#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <semaphore.h>
#define NUM_THREADS 4
#define COUNT_LIMIT 13
int done = 0;
int count = 0;
int quantum = 2;
int thread_ids[4] = {0,1,2,3};
int thread_runtime[4] = {0,5,4,7};
pthread_mutex_t count_mutex;
pthread_cond_t count_threshold_cv;
void * inc_count(void * arg);
static sem_t count_sem;
int quit = 0;
///////// Inc_Count////////////////
void *inc_count(void *t)
{
long my_id = (long)t;
int i;
sem_wait(&count_sem); /////////////CRIT SECTION//////////////////////////////////
printf("run_thread = %d\n",my_id);
printf("%d \n",thread_runtime[my_id]);
for( i=0; i < thread_runtime[my_id];i++)
{
printf("runtime= %d\n",thread_runtime[my_id]);
pthread_mutex_lock(&count_mutex);
count++;
if (count == COUNT_LIMIT) {
pthread_cond_signal(&count_threshold_cv);
printf("inc_count(): thread %ld, count = %d Threshold reached.\n", my_id,
count);
}
printf("inc_count(): thread %ld, count = %d, unlocking mutex\n",my_id, count);
pthread_mutex_unlock(&count_mutex);
sleep(1) ;
}//End For
sem_post(&count_sem); // Next Thread Enters Crit Section
pthread_exit(NULL);
}
/////////// Count_Watch ////////////////
void *watch_count(void *t)
{
long my_id = (long)t;
printf("Starting watch_count(): thread %ld\n", my_id);
pthread_mutex_lock(&count_mutex);
if (count<COUNT_LIMIT) {
pthread_cond_wait(&count_threshold_cv, &count_mutex);
printf("watch_count(): thread %ld Condition signal received.\n", my_id);
printf("watch_count(): thread %ld count now = %d.\n", my_id, count);
}
pthread_mutex_unlock(&count_mutex);
pthread_exit(NULL);
}
////////////////// Main ////////////////
int main (int argc, char *argv[])
{
int i;
long t1=0, t2=1, t3=2, t4=3;
pthread_t threads[4];
pthread_attr_t attr;
sem_init(&count_sem, 0, 1);
/* Initialize mutex and condition variable objects */
pthread_mutex_init(&count_mutex, NULL);
pthread_cond_init (&count_threshold_cv, NULL);
/* For portability, explicitly create threads in a joinable state */
pthread_attr_init(&attr);
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
pthread_create(&threads[0], &attr, watch_count, (void *)t1);
pthread_create(&threads[1], &attr, inc_count, (void *)t2);
pthread_create(&threads[2], &attr, inc_count, (void *)t3);
pthread_create(&threads[3], &attr, inc_count, (void *)t4);
/* Wait for all threads to complete */
for (i=0; i<NUM_THREADS; i++) {
pthread_join(threads[i], NULL);
}
printf ("Main(): Waited on %d threads. Done.\n", NUM_THREADS);
/* Clean up and exit */
pthread_attr_destroy(&attr);
pthread_mutex_destroy(&count_mutex);
pthread_cond_destroy(&count_threshold_cv);
pthread_exit(NULL);
}
我正在尝试学习线程调度,有很多我不知道的技术编码。我确实从理论上知道它应该如何工作,但是在代码入门方面遇到了麻烦...
我知道,至少我认为,该程序不是实时的,也不是实时的。
我需要一些如何创建调度程序调度程序,以按应运行的顺序控制线程... RR FCFS SJF等。
现在我没有调度员。我所拥有的是信号量/互斥量来控制线程。
这段代码确实运行FCFS ...,并且我一直在尝试使用信号量来创建RR ..但遇到了很多麻烦。我相信创建一个调度程序会比较容易,但是我不知道怎么做。
我需要帮助,我不是在寻找答案,只是指导。.一些示例代码将帮助您了解更多信息。
好的,为了帮助理解,我的第一个想法是使用信号量并尝试创建一个循环,以便当一个线程运行时让它说2倍,该线程等待其他线程运行两次或直到运行时间结束。
我遇到的问题是,似乎没有以这种方式同步线程的好方法。除非有一种方法可以为每个线程创建唯一的信号灯。这就是为什么我需要一些帮助或指导来创建调度程序功能。
谢谢你。
最佳答案
首先,操作系统是系统中唯一可以实际调度线程运行的实体。较新的Linux内核中最常见的调度程序是静态优先级FCFS和RR,以及SCHED_OTHER调度程序,现在由完全公平的调度程序实现。
您似乎对“OS级调度” v.s的概念感到困惑。 “应用程序级调度”。前者对您的应用程序及其语义一无所知。后者必须使用诸如信号灯,队列等工具来实现。
实现以FCFS方式执行的一组线程的一种方法是创建一个FIFO队列,使用互斥锁对其进行保护,然后在该队列中放置 token ,以使线程知道何时轮到它们运行。
线程的伪代码为:
while (1)
lock_mutex()
next = pop_queue()
if (next == me)
do_my_work()
unlock_mutex()
break
unlock_muteX()
请注意,此示例不应按原样使用。它要求消费者与生产者以及其他消费者之间进行仔细的协调。它还没有涉及更详细的语义,例如应该将工作序列化,或者仅仅是将工作开始为FCFS,或者线程数与可用CPU之间的关系。
关于c - 线程调度Round Robin/调度调度,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2641284/