- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我编写了一个程序,其中主线程创建了 2 个子线程。等待一段随机时间,然后生成一个介于 1 和 6 之间的随机值,并将该值放入 randomValue 变量中。另一个等待并读取全局变量 randomValue 并打印变量。所以我使用单个信号量来确保读取的线程将始终读取另一个线程写入的值。
我想修改让每个线程都不知道 x loops( 2,3...) 以便它可以产生 x 倍的随机值并将这个值放入 randomValue 并且另一个线程将读取x 倍于 randomValue 变量并将打印它。欢迎任何修改代码的想法。非常感谢。
#include <time.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <pthread.h>
#include <semaphore.h>
/* variable shared by producer and consumer
(producer writes a value between 1 and 6) */
long randomValue = 0;
/**semaphore **/
sem_t mex;
// function that create a random sleep-time (to induce unpredictability)
static int duration(int min, int max)
{
static int first_time = 1;
// Seed the random number generator with the current time
// of day if we haven't done so yet.
if (first_time) {
first_time = 0;
srand48((int) time(NULL));
}
return (int) (min + drand48()*(max - min));
}
/* producer program */
void *producer(void *arg) {
char statearray[256];
// Initialize random generator
// Note that initstate and random are not threadsafe
initstate(time(NULL), statearray, 256);
sleep(duration(1,3));
printf("prod: producing ...\n");
//random value 1 et 6
randomValue = random();
randomValue = ((double) randomValue / RAND_MAX)*6+1;
//put the value
printf("prod: delivering %ld\n", randomValue);
sem_post(&mex);
pthread_exit(NULL);
}
/* consumer program */
void *consumer(void *arg) {
sleep(duration(1,5));
sem_wait(&mex);
printf("cons: consuming ...\n");
//
printf("cons: received %ld\n", randomValue);
pthread_exit(NULL);
}
/* main thread */
int main(int argc, char *argv[]) {
pthread_t tidprod, tidcons;
if (sem_init(&mex,0,0) != 0){
perror("sem_init");
exit(EXIT_FAILURE);
}
if (pthread_create(&tidprod, NULL, producer, NULL) != 0) {
perror("pthread_create");
}
if (pthread_create(&tidcons, NULL, consumer, NULL) != 0) {
perror("pthread_create");
}
if (pthread_join(tidcons, NULL) != 0) {
perror("pthread_join prod");
}
if (pthread_join(tidprod, NULL) != 0) {
perror("pthread_join prod");
}
fflush(stdout);
pthread_exit(EXIT_SUCCESS);
}
最佳答案
你可以做一些你想做的事:
因此,您可以这样更改代码:
信号量声明
/*semaphores */
/* Set by producer when production is ready */
sem_t mex_prod;
/* Set by consumer when ready to consume */
sem_t mex_cons;
信号量初始化
/* by default, nothing produced */
if (sem_init(&mex_prod,0,0) != 0){
perror("sem_init");
exit(EXIT_FAILURE);
}
/* by default, consumer is not ready */
if (sem_init(&mex_cons,0,0) != 0){
perror("sem_init");
exit(EXIT_FAILURE);
}
生产者线程函数
(我删除了你的评论)
void *producer(void *arg) {
char statearray[256];
initstate(time(NULL), statearray, 256);
/* choose how much to product */
int number_of_productions = 2 + random()%5;
printf("prod: %d to produce\n", number_of_productions );
/* this loop can be replaced by some for (i = 0; i< num; ++i) loop */
while(number_of_productions--)
{
sleep(duration(1,3));
/* wait for consumer to be ready */
sem_wait(&mex_cons);
printf("prod: producing ...\n");
randomValue = random();
randomValue = ((double) randomValue / RAND_MAX)*6+1;
printf("prod: delivering %ld\n", randomValue);
sem_post(&mex_prod);
}
sem_wait(&mex_cons);
/* generate a special value to tell the consumer that no new value
will be given */
randomValue = -1;
sem_post(&mex_prod);
pthread_exit(NULL);
}
消费者线程函数
void *consumer(void *arg) {
/* tell producer that consumer is ready */
sem_post(&mex_cons);
/* since we don't know how many value will be generated, we have an
infinite loop */
while(1)
{
sleep(duration(1,5));
sem_wait(&mex_prod);
printf("cons: consuming ...\n");
printf("cons: received %ld\n", randomValue);
/* value has been consumed, tell producer we are ready for a new one */
sem_post(&mex_cons);
/* if randomValue is -1, we break the loop since no more value will come */
if (-1 == randomValue)
break;
}
pthread_exit(NULL);
}
关于c - Thread main with 2 sons thread循环x次产品和消费者,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52635670/
我尝试将一些用户信息插入到我的数据库中,所以我使用 python 创建了两个脚本,第一个是服务器,它仍然醒着并监听每个连接的新客户端,并且还能够读取用户数据(从客户端应用程序),最后将数据写入 fil
我尝试将数据从 SQL Server 迁移到 MongoDB,但在将数据导入到 MongoDB 的最后阶段遇到了以下类型错误。 mongoImp = dbo.insert_many(jArray)
我能够从 URL 检索 JSON 文件并将其分配给一个变量以打印出来进行测试,但我在将其插入 MongoDB 时遇到了真正的问题。这是我的代码。 import urllib.request, json
我正在使用 pymongo 将数据写入 MongoDB。 我在执行写操作时收到此错误。 TypeError: document must be an instance of dict, bson.so
尝试将推特流数据存储到 MongoDB 中。该代码几乎是 http://stats.seandolinar.com/collecting-twitter-data-storing-tweets-in-
我需要从 Access 数据库读入成员列表。每个成员都由另一个成员赞助。每条记录都包含其赞助商的 ID 和他们自己的 ID。我现在必须能够有效地读取成员(member)名册并将其打印出来,并缩进以显示
“罢工之子”这个名字有何意义?它有什么意义还是只是听起来很酷? 最佳答案 杰森·赞德的blog post完美地解释了这一点: The original name of the CLR team (ch
我完全自己编写了这段代码,因为我寻求帮助的每个人都会给出具有误导性且不适用于我的项目的答案,无论如何,我创建了一个代码来扫描字符串化的 JSON,简化它并提取它的 parent 和 child ,问题
我的菜单下拉菜单“隐藏”在出现在下拉菜单下方的内容后面。该菜单在 Firefox、Opera、Safari、IE8 中工作正常,但在 IE6 中不工作。 此页面上的示例 - http://market
我想构建和研究演示项目Son of Grab来自苹果公司。 我下载了存档并使用 Xcode 6.1 打开该项目。构建失败,并出现错误: Undefined symbols for architectu
页面 - http://blu-eye.com/index.html - 包含在网站其余部分正确显示的 suckerfish 菜单,此页面除外。菜单项隐藏在下面的内容后面。 它下面的内容包含一个带有图
我在我的网站上使用了 Son of Suckerfish 下拉菜单。它在所有浏览器(包括 IE8 及更高版本)中看起来都很好,但是在 IE7 中,当我将鼠标悬停在按钮上时,下拉菜单不会出现在按钮下方。
当访问修饰符被设置为 private 或 protected 时,为什么我无法创建基类的指针并将其指向子类? #include using namespace std; class father {
我编写了一个程序,其中主线程创建了 2 个子线程。等待一段随机时间,然后生成一个介于 1 和 6 之间的随机值,并将该值放入 randomValue 变量中。另一个等待并读取全局变量 randomVa
我在树状结构中工作,其中每个父节点可以包含多个儿子,而每个儿子只能有一个父节点,很像文件系统中的目录结构。 我已经做了很多这样的事情,并且有很多不同的方法来解决鸡和蛋问题,而不是我现在要与你分享的,但
在保存到 MongoDB 之前,我正在尝试使用操纵器将小数转换为 float 。数据来自 SQL Server 数据库,我使用基于 freeTDS 的 pymssql 导入。 我已按照 MongoDB
当我使用普通键盘输入 json 格式的 ' 时出现此错误,如下所示。 type Movie struct { Title string Year int 'json:"release
先给大家看一段代码: 复制代码 代码如下: {dede:channelartlist typeid = 3} <li cl
每当我尝试使用 JSON Simple 解析包含 JSON 数组的文件时,我最终都会收到此错误消息...代码在示例中看起来总是很好,但每次我尝试某些操作时我仍然会收到此消息! 。请帮忙! Except
我很困惑为什么我不能正确理解以下代码 function Parent(){ this.foo = 'bar'; } function Son(){} // if I do this Son.p
我是一名优秀的程序员,十分优秀!