- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想确保我了解条件变量的工作原理,因此我将使用编写的程序来问我的问题。
在我的程序中,我有一个“生产者”线程(一个)和“ worker 线程”(几个,让我们假设 3 )。
生产者线程“处理”一个FIFO链接列表,这意味着,它只是在列表的开头(由全局指针指向)检查是否有一个项目(在我的程序中请求称为Req
类型)。在我的程序中称为前端的指针),如果是这样,则将其分配给全局请求元素(称为globalReq
)。
辅助线程循环运行,通过将全局请求变量提取到自己的本地变量中来等待处理请求(每个线程都是“私有(private)”的,因为每个线程都有一个独立堆栈-如果我输入错误,请更正我),然后处理该请求。
为此,我将互斥锁与条件变量一起使用。
一个重要的注意事项是,一旦一个请求存在(目前让我们假设只有一个存在),它就不重要,哪个工作线程将“照顾”它(假设它们都是“自由的”- sleep )在条件变量上)。
在提取请求并将其分配给全局请求之后,生产者线程调用pthread_cond_signal
-据我所知,它至少会解除阻塞一个“被阻塞”的线程->因此它可以解除阻塞,例如2个线程。
所以我的问题是关于我当前的代码(如下):
1)如何确保只有一个线程(来自工作线程)可以处理请求。
我是否需要像所有通用的“生产者使用者”实现中一样添加“while check loop”?
2)如何通过pthread_cond_broadcast
解除阻塞的线程(或者如果pthread_cond_signal
解除阻塞多个线程),互斥对象的内容,可能我还没有掌握...
(每个)工作线程的代码是:
void *worker(void *arg)
{
while(1)
{
printf("\n BEFORE LOCKING sthread_mutex with thread: %d \n", syscall(SYS_gettid));
pthread_mutex_lock(&sthread_mutex);
printf("\n AFTER UNLOCKING sthread_mutex with thread: %d \n", syscall(SYS_gettid));
printf("\n BEFORE WAITING ON cond_var with thread: %d \n", syscall(SYS_gettid));
pthread_cond_wait(&cond_var,&sthread_mutex); //wait on condition variable
printf("\n AFTER WAITING ON cond_var with thread: %d \n", syscall(SYS_gettid));
printf("\n got signal for thread: %d \n",syscall(SYS_gettid));
// extract the current request into g local variable
// within the "private stack" of this thread
Req localReq = globalReq;
pthread_mutex_unlock(&sthread_mutex);
printf("\n AFTER UNLOCKING sthread_mutex with thread: %d \n", syscall(SYS_gettid));
// perform the desired task
task(localReq);
printf("\n BEFORE calling sem_post with thread: %d \n", syscall(SYS_gettid));
sem_post(&sem);
} // end while (1)
} // end of worker thread function
void *producer(void *arg)
{
while(1)
{
if(front != NULL) // queue not empty
{
// go to sleep if all "worker threads" are occuipied
// or decrement number of free "worker threads" threads by 1
printf(" schedualer thread BEFORE calling sem_wait on sem \n");
sem_wait(&sem);
// lock the sthread mutex in order to "synchronize" with the
// "worker threads"...
printf(" schedualer thread BEFORE locking sthread_mutex \n");
pthread_mutex_lock(&sthread_mutex);
printf(" schedualer thread AFTER locking sthread_mutex \n");
globalReq = extract_element(); // this is the global request variable
// notify the worker threads that an "arriving request" needed to
// be taking care of
printf(" schedualer thread BEFORE calling signal on cond_var \n");
// pthread_cond_signal(&cond_var);
pthread_cond_broadcast(&cond_var);
printf(" schedualer thread AFTER calling signal on cond_var \n");
// unlock the smutex
printf(" schedualer thread BEFORE UNLOCKING sthread_mutex \n");
pthread_mutex_unlock(&sthread_mutex);
printf(" schedualer thread AFTER UNLOCKING sthread_mutex \n");
} // queue not empty
else
continue;
} // end while (1)
} // end of producer
sem_wait
(它以工作线程的数量开始初始化,在本例中为
3 ),以指示自身当前有多少个工作线程正在处理请求,并且,为了完成此“机制”,工作线程一旦完成处理它们“中奖”的请求(当争用条件变量时),就调用
sem_post
指示“另一个工作线程可用”。
front
和rear
分别指向链表的头和尾(列表的头是要处理的第一个请求)。void insertion(void *toInsert)
{
struct getInfo *req = (struct getInfo *)toInsert;
newNode = (N*)malloc(sizeof(N));
newNode->req = req;
newNode->next = NULL;
// WHERE SHULD I LOCK (AND UNLOCK) THE QUEUE MUTEX ????????????????????????
if(front == NULL)
{
front = newNode;
printf("empty list - insert as head \n");
}
else
{
rear->next = newNode;
printf(" NOT AN EMPTY list - insert as last node \n");
}
rear = newNode;
} // end of insertion
Req extract_element()
{
if(front == NULL)
printf("\n empty queue \n");
else
{
Req ret;
tmpExtract = front;
ret.socketNum = tmpExtract->req->socketNum;
ret.type = tmpExtract->req->type;
printf("\n extracting node with sockNum: %d \n",ret.socketNum);
front = front->next;
free(tmpExtract);
return(ret);
}
} // end of extract_element
最佳答案
首先,不是直接回答您的问题,而是对执行此操作的典型方法的说明:
您有一种队列或列表,您可以在其中添加工作数据。每当添加一组工作数据时,都首先锁定互斥锁,添加数据,向条件变量发出信号,然后解锁互斥锁。
然后,您的工作线程将锁定互斥锁,并在队列为空时循环等待条件。发送信号后,一个或多个工作人员将醒来,但是(一次)只有一个工作人员将捕获互斥体。互斥锁处于锁定状态时,“优胜者”将检查队列中是否有东西,将其提取出来,解锁互斥锁,然后进行必要的工作。解锁互斥锁后,其他线程也可能会唤醒(如果情况已广播,也会唤醒),并且将从队列中提取下一个工作,或者在队列为空时返回等待状态。
在代码中,它看起来像这样:
#include <pthread.h>
#include <unistd.h>
#include <stdio.h>
#define WORKER_COUNT 3
pthread_mutex_t mutex;
pthread_cond_t cond;
pthread_t workers[WORKER_COUNT];
static int queueSize = 0;
static void *workerFunc(void *arg)
{
printf("Starting worker %d\n", (int)arg);
while(1) {
pthread_mutex_lock(&mutex);
while(queueSize < 1) {
pthread_cond_wait(&cond, &mutex);
}
printf("Worker %d woke up, processing queue #%d\n", (int)arg, queueSize);
//Extract work from queue
--queueSize;
pthread_mutex_unlock(&mutex);
//Do work
sleep(1);
}
}
int main()
{
int i;
pthread_mutex_init(&mutex, 0);
pthread_cond_init(&cond, 0);
for(i=0; i<WORKER_COUNT; ++i) {
pthread_create(&(workers[i]), 0, workerFunc, (void*)(i+1));
}
sleep(1);
pthread_mutex_lock(&mutex);
//Add work to queue
queueSize = 5;
pthread_cond_broadcast(&cond);
pthread_mutex_unlock(&mutex);
sleep(10);
return 0;
}
pthread_cond_broadcast()
唤醒,并且只要队列中有东西就将运行(直到
queueSize
返回0-想象还有一个实际的队列),然后再返回等待。
queueSize
)会处理此问题。您还需要保护变量,因为您的线程也可能由于其他原因而被唤醒(所谓的虚假唤醒,请参见
http://linux.die.net/man/3/pthread_cond_wait)。
pthread_mutex_lock()
,则唤醒的线程会像其他任何线程一样在互斥体上竞争。
pthread_cond_wait()
的问题是它可能会虚假唤醒。也就是说,即使您没有发出信号,它也可能会唤醒。因此,您需要一个保护变量(在我的代码示例中
while()
周围的
pthread_cond_wait()
循环),以确保在
pthread_cond_wait()
返回时确实有唤醒的理由。然后,使用与条件使用相同的互斥量来保护保护变量(以及需要提取的任何工作数据),然后可以确定每个工作只有一个线程可以完成。
extract_element()
?
insertion()
中,在首次访问
front
之前锁定互斥锁,在最后一次访问
rear
之后将其解锁。
extract_element()
中的内容相同-尽管您需要重写此函数以在队列为空时也具有有效的返回值。
关于c - 适当的条件变量用法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21578969/
#include using namespace std; class C{ private: int value; public: C(){ value = 0;
这个问题已经有答案了: What is the difference between char a[] = ?string?; and char *p = ?string?;? (8 个回答) 已关闭
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 此帖子已于 8 个月
除了调试之外,是否有任何针对 c、c++ 或 c# 的测试工具,其工作原理类似于将独立函数复制粘贴到某个文本框,然后在其他文本框中输入参数? 最佳答案 也许您会考虑单元测试。我推荐你谷歌测试和谷歌模拟
我想在第二台显示器中移动一个窗口 (HWND)。问题是我尝试了很多方法,例如将分辨率加倍或输入负值,但它永远无法将窗口放在我的第二台显示器上。 关于如何在 C/C++/c# 中执行此操作的任何线索 最
我正在寻找 C/C++/C## 中不同类型 DES 的现有实现。我的运行平台是Windows XP/Vista/7。 我正在尝试编写一个 C# 程序,它将使用 DES 算法进行加密和解密。我需要一些实
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
有没有办法强制将另一个 窗口置于顶部? 不是应用程序的窗口,而是另一个已经在系统上运行的窗口。 (Windows, C/C++/C#) 最佳答案 SetWindowPos(that_window_ha
假设您可以在 C/C++ 或 Csharp 之间做出选择,并且您打算在 Windows 和 Linux 服务器上运行同一服务器的多个实例,那么构建套接字服务器应用程序的最明智选择是什么? 最佳答案 如
你们能告诉我它们之间的区别吗? 顺便问一下,有什么叫C++库或C库的吗? 最佳答案 C++ 标准库 和 C 标准库 是 C++ 和 C 标准定义的库,提供给 C++ 和 C 程序使用。那是那些词的共同
下面的测试代码,我将输出信息放在注释中。我使用的是 gcc 4.8.5 和 Centos 7.2。 #include #include class C { public:
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我的客户将使用名为 annoucement 的结构/类与客户通信。我想我会用 C++ 编写服务器。会有很多不同的类继承annoucement。我的问题是通过网络将这些类发送给客户端 我想也许我应该使用
我在 C# 中有以下函数: public Matrix ConcatDescriptors(IList> descriptors) { int cols = descriptors[0].Co
我有一个项目要编写一个函数来对某些数据执行某些操作。我可以用 C/C++ 编写代码,但我不想与雇主共享该函数的代码。相反,我只想让他有权在他自己的代码中调用该函数。是否可以?我想到了这两种方法 - 在
我使用的是编写糟糕的第 3 方 (C/C++) Api。我从托管代码(C++/CLI)中使用它。有时会出现“访问冲突错误”。这使整个应用程序崩溃。我知道我无法处理这些错误[如果指针访问非法内存位置等,
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我有一些 C 代码,将使用 P/Invoke 从 C# 调用。我正在尝试为这个 C 函数定义一个 C# 等效项。 SomeData* DoSomething(); struct SomeData {
这个问题已经有答案了: Why are these constructs using pre and post-increment undefined behavior? (14 个回答) 已关闭 6
我是一名优秀的程序员,十分优秀!