- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据我昨天的问题,here ,我编写了一个小代码示例,它启动了一些计数和一些等待线程。等待线程将停止 pthread_cond_wait
直到收到信号。计数线程完成任务后发送信号。
等待线程接收信号,每个线程打印出其给定的唯一 ID。
我希望所有等待线程同时接收信号,以便每个线程都可以继续执行程序。然而我注意到,输出并不困惑,事实上它们甚至看起来相当有序,就像 FILO 中一样!
现在有很多地方我可能会出错。
这是我的代码:
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#define counting_threads 100
#define waiting_threads 100
int count = 0;
int counting_thread_ids[counting_threads];
int waiting_thread_ids[waiting_threads];
pthread_mutex_t count_mutex;
pthread_cond_t count_threshold_cv;
void init_ids(){
for(int i = 0; i < counting_threads; i++)
counting_thread_ids[i] = 2*i;
for(int j =0; j < waiting_threads; j++)
waiting_thread_ids[j] = 2*j+1;
}
void counting(void *t)
{
pthread_mutex_lock(&count_mutex);
count++;
if (count == counting_threads) {
sleep(2);
printf("inc_count(): count = %d Threshold reached. Signaling waiting threads. \n", count);
//~ pthread_cond_signal(&count_threshold_cv);
pthread_cond_broadcast(&count_threshold_cv);
}
pthread_mutex_unlock(&count_mutex);
}
void *waiting(void *t)
{
long my_id = (long)t;
//~ printf("Starting watch_count(): thread %ld\n", my_id);
pthread_mutex_lock(&count_mutex);
//~ printf("watch_count(): I start waiting now: %ld \n", my_id);
pthread_cond_wait(&count_threshold_cv, &count_mutex);
printf("watch_count(): thread %ld Condition signal received.\n", my_id);
pthread_mutex_unlock(&count_mutex);
pthread_exit(NULL);
}
int main (int argc, char *argv[])
{
init_ids();
pthread_t wt[waiting_threads];
pthread_t ct[counting_threads];
/* Initialize mutex and condition variable objects */
pthread_mutex_init(&count_mutex, NULL);
pthread_cond_init (&count_threshold_cv, NULL);
for(int i = 0; i < waiting_threads; i++)
pthread_create(&wt[i], NULL, waiting, (void*) waiting_thread_ids[i] );
for(int i = 0; i < counting_threads; i++)
pthread_create(&ct[i], NULL, counting, (void*) counting_thread_ids[i] );
/* Wait for all threads to complete */
for (int i=0; i<waiting_threads; i++) {
pthread_join(wt[i], NULL);
}
for (int i=0; i<counting_threads; i++) {
pthread_join(ct[i], NULL);
}
/* Clean up and exit */
pthread_mutex_destroy(&count_mutex);
pthread_cond_destroy(&count_threshold_cv);
pthread_exit(NULL);
}
最佳答案
pthread_cond_signal() 调用至少会解除对指定条件变量 cond 上阻塞的线程之一的阻塞(如果有任何线程在 cond 上阻塞)。
pthread_cond_broadcast() 调用会取消当前在指定条件变量 cond 上阻塞的所有线程。
如果多个线程因条件变量而被阻塞,调度策略将确定线程解除阻塞的顺序。
有关调度策略的更多信息可以找到here .
关于c - pthread_cond_broadcast 的意外行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54240451/
我有一个工作线程池。每个 worker 执行这个例程: void* worker(void* args){ ... pthread_mutex_lock(&mtx); while (que
根据我昨天的问题,here ,我编写了一个小代码示例,它启动了一些计数和一些等待线程。等待线程将停止 pthread_cond_wait 直到收到信号。计数线程完成任务后发送信号。 等待线程接收信号,
我正在使用 POSIX,并且有 3 个线程。 请注意下面的所有线程都使用相同的互斥锁。 线程 1 正在使用 pthread_cond_wait 等待满足条件(等待在 while 循环内,因此也不是无条
我想从主线程向等待条件的所有其他线程发送广播信号。在我看来,广播信号来得早。 #include #include #define NUM 4 #define SIZE 256 using name
我真的很难理解如何以允许线程同时运行的方式锁定和解锁互斥体。现在我试图让每个线程都做一些事情,然后等到所有线程都准备好,然后重复它。这应该反复发生,所以我把它都放在一个条件循环中。我的问题是,似乎我的
我写了这个程序: pthread_cond_t placeFootCondition; pthread_mutex_t rf,lf; void* rss(void* in){ while(1)
假设广播线程在只有 3 个线程等待时进行广播,并且在广播线程完成广播后第 4 个线程调用 pthread_cond_wait,第 4 个线程是否会脱离等待状态。以及如何重置条件变量,以便广播线程有时可
对于 pthread_cond_t,我们必须关联一个互斥体,当发出条件信号时,我看到了如下代码 pthread_mutex_lock(&mutex); //code that makes condit
在 linux 2.6.30 中使用 pthreads 我试图发送一个信号,这将导致多个线程开始执行。广播似乎只被一个线程接收到。我已经尝试过 pthread_cond_signal 和 pthrea
我有一个带有“管理器”线程的简单应用程序,它产生十个简单的“工作器”线程。我希望所有“工作”线程都阻塞在同一个条件变量(即:condvar)上,并且我希望通过 pthread_cond_broadca
我想使用 pthread_cond_broadcast() 唤醒所有等待相同条件的线程。 但是,这些线程似乎不能真正并行运行,因为它们必须共享相同的互斥体。 我说的对吗?或者有什么办法吗? 提前致谢。
所以我搜索了关于堆栈溢出和其他资源的高低,但我无法理解与上述功能有关的一些事情。具体来说, 1)当pthread_cond_timedwait()因为定时器值用完而返回时,它如何自动重新获取互斥量。互
如果我调用 pthread_cond_broadcast 并且没有人在等待条件,pthread_cond_broadcast 是否会调用上下文切换和/或调用内核? 如果不是,我可以依靠它非常快吗(我的
我有一个“服务器”进程a,可能还有多个“客户端”进程b。服务器创建一个共享内存文件 (shm_open),其中包含一个 pthread_mutex_t 和一个 pthread_cond_t,用于向客户
由于 pthread_cond_broadcast 的 pthread 示例唤醒是稀疏的,我写了一个,但不确定这是否正确同步以及如何做到这一点: 所有线程是否共享相同的 c 和 mtx 变量? 是否需
我有一个结构数组。每个结构体如下。 struct thread_st { pthread_t thr; int conn; pthread_mutex_t mutex;
我是多线程新手,遇到了段错误。我正在使用 void addfunction(void *xyz) { flag_TO_go = 1; pthread_cond_broadcast(&c
条件变量通常用于在互斥量下修改它们所指的状态。然而,当状态只是一个单一的只设置标志时,就不需要互斥锁来阻止同时执行。所以有人可能想做这样的事情: flag = 1; pthread_cond_broa
在我的程序中有一部分代码等待被其他部分代码唤醒: 这是进入休眠的部分: void flush2device(int task_id) { if (pthread_mutex_lock(&id2cvLo
我正在尝试使用 LD_PRELOAD 机制插入对 pthread_cond_broadcast 的调用。我插入的 pthread_cond_broadcast 函数只是调用原始的 pthread_co
我是一名优秀的程序员,十分优秀!