- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我刚开始在大学学习线程,但似乎不太了解它。
我想让我的代码获取参数并检查它们是偶数还是质数,如果是,则打印它们。另外对这些数字中的每一个求和。
这是代码:
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#define something 10
pthread_mutex_t lock=PTHREAD_MUTEX_INITIALIZER;
int snrp=0;
int sprim=0;
void * verif(void* argv){
pthread_mutex_lock(&lock);
int x=*(int*)argv;
if (x%2==0){
printf("%d is even\n",x);
snrp+=x;
}
else{
int ok=1;
int d;
if(x<1)
ok=0;
for(d=3;d*d<x;d+=2)
if(x%d==0)
ok=0;
if(ok==0)
return NULL;
printf("%d is prime\n",x);
sprim+=x;
}
pthread_mutex_unlock(&lock);
sleep(1);
return NULL;
}
int main(int argc,char* argv[]){
pthread_t threads[something];
int i,n;
for(i=1;i<argc;i+=1){
n=atoi(argv[i]);
if(pthread_create(&threads[i],NULL,verif,(void*) &n))
printf("Error");
}
for(i=1;i<argc;i+=1)
pthread_join(threads[i],NULL);
printf("Even numbers sum is %d \n",snrp);
printf("Prime numbers sum is %d \n",sprim);
pthread_mutex_destroy(&lock);
return 0;
}
例如,如果我使用参数 2,3,5
,我会得到输出:
5 is prime
5 is prime
5 is prime
Even numbers sum is 0
Prime numbers sum is 15
谁能解释一下为什么?
最佳答案
@Darkmer
void * verif(void* argv){
//添加这一行。在您的代码中。
pthread_mutex_lock(&锁);
int x=*(int*)argv;
printf("%p 存储 %d",argv,n);
你会明白,每次你发送相同的地址,因此相同的 n(在你的样本中是 5)。为什么会这样?发生这种情况是因为在线程使用 n 之前,您在 main 函数中使用下一个命令行参数并行更改了它。
发生这种情况是因为在主程序中,您对所有三个参数使用了相同的“n”。相反,推迟 atoi 函数并在 verif() 中使用它。直接从命令行参数传递 argv。我可以为您更改 pthread_create(..) 函数,但这是您的家庭作业。
祝你好运。
关于c - 使用 pthread_mutex_lock 时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37234791/
我在一个线程中调用了一个pthread_mutex_lock(&th) 然后我想在另一个线程中解锁互斥量pthread_mutex_unlock(&th) 这有可能吗? 或者应该在同一个线程中解锁互斥
我真的很想知道为什么所有的源代码都实现了 pthread_mutex_lock 从不测试其定义的返回值: documentation of pthread 即使在书中,示例也不会测试锁定是否出错,代码
故事 根据手册页https://linux.die.net/man/3/pthread_mutex_lock The mutex object referenced by mutex shall be
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 已关闭 9 年前。 编辑问题以包含 desired behavior, a specific problem
相关代码可以在这里找到:http://pastebin.com/VbhtQckm 问题出在线上85。 pthread_mutex_lock(ID_retrieval_pool->info->lock)
在我的生产者/消费者练习中,我想构建两个线程,一个用于生产者,另一个用于消费者。他们可以访问缓冲区以在其上读取/写入消息,并且我想使用互斥体来管理此缓冲区。 #include #include #
我想编写一个程序,计数为100。我想使用pthread锁使用10个线程来完成此任务。当程序进入线程时,它会生成一个介于0到2之间的数字,该值将被添加到其数组的索引以及全局变量sum中。当总和达到100
如何创建一个锁来锁定不同线程进入该函数?线程 1:A线程 2:C主题 3:C线程 4:B线程 5:C主题 6:B “A”、“B”、“C”是创建线程时传递给线程的参数。 所以当我锁定这一个锁X时,所有传
我有一个可以打印一些数据结构的代码。 void print_wheel_timer(wheel_timer_t *wt){ } Then i sandwiched the code in-betw
我正在尝试模拟一个多线程环境,每个线程都调用 Kevin 类的 Speak 函数。但是,在 pthread_mutex_lock 函数(之后/期间)存在段错误,我找不到原因。 pthread_mute
一个普遍的事实是,pthread_mutex_lock( ) 应该始终应用于线程函数中使用的全局变量和静态变量。线程函数中的局部变量怎么样? 在哪些用例中,线程函数内的局部变量应该被锁定或应该始终被锁
最近看了一些关于thread mutex的代码,相关代码在这里: #include #include #include pthread_mutex_t mutex; pthr
当我尝试这样做时出现段错误 pthread_mutex_lock(&_mutex). 这真的很奇怪,我不确定是什么原因造成的。我已经在构造函数中初始化了 _mutex pthread_mutex_in
我正在使用 pthread_mutex_t 进行锁定。 pthread_mutex_t m_lock; void get1() { cout<<"Start get 1"<
我正在编写一个程序来读取和处理大量数据。为了加快这个过程,我使用 C++ 的 Pthreads 库实现了多线程读取/处理。但是,当我在我的互斥量上调用 pthread_mutex_lock(&lock
我正在使用上面的代码使用 2 个线程递增计数器,这两个线程独立地获取 mut 锁和递增计数器。线程进入此函数后,我面临死锁。 pthread_mutex_t mut = PTHREAD_MUTEX_
这个问题在这里已经有了答案: Does guarding a variable with a pthread mutex guarantee it's also not cached? (3 个答案
我正在编写一些 C 代码,但在锁定互斥体时遇到了问题。该代码调用了一个函数,并且该函数锁定了一个互斥锁以确保文件指针不会被覆盖,这在多个实例中都可以正常工作,可能对被调用函数进行了大约 10-20 次
#include "MutexCondition.h" bool MutexCondition::init(){ printf("MutexCondition::init called\n")
我只是想知道与线程之间的同步相关的功能是如何在 Unix 中实现的。例如,当我调用 pthread_mutex_lock 时会发生什么?有没有使用中的指针?对源代码的引用会很有帮助。 最佳答案 它既复
我是一名优秀的程序员,十分优秀!