初期値 を0 として,この変数を並列に動作する3 つのスレッドで mutex を用いて排他制御し,協力して30 まで1 ず つ加算する(各スレッドがそれぞれ1 ずつ計10 回加算するように)プログラ ムを実現したいです
発生している問題・エラーメッセージ
the process joins with thread th1 とだけ表示されてプログラムが実行されません
該当のソースコード
C言語
1#include <stdio.h> 2#include <stdlib.h> 3#include <time.h> 4#include <unistd.h> 5#include <pthread.h> 6 7int count = 0; 8 9void *calc(void *arg); 10 11 typedef struct { 12 char name[64]; 13 pthread_mutex_t *mlock; 14} mythread_args_t; 15 16int main(void) 17{ 18 pthread_t th1, th2, th3; 19 void *rval; 20 21 pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; 22 mythread_args_t args1 = {"th1", &mutex}; 23 mythread_args_t args2 = {"th2", &mutex}; 24 mythread_args_t args3 = {"th3", &mutex}; 25 26 srand((unsigned int) time(NULL)); 27 28 //start 29 if (pthread_create(&th1, NULL, calc, (void *) &args1) != 0) { 30 perror("Thread creation failed.\n"); 31 exit(EXIT_FAILURE); 32 } 33 34 if (pthread_create(&th2, NULL, calc, (void *) &args2) != 0) { 35 perror("Thread creation failed.\n"); 36 exit(EXIT_FAILURE); 37 } 38 39 if (pthread_create(&th3, NULL, calc, (void *) &args3) != 0) { 40 perror("Thread creation failed.\n"); 41 exit(EXIT_FAILURE); 42 } 43 44 //wait 45 printf("the process joins with thread th1\n"); 46 if (pthread_join(th1, &rval) != 0) { 47 perror("Failed to join with th1.\n"); 48 } 49 printf("the process joins with thread th2\n"); 50 if (pthread_join(th2, &rval) != 0) { 51 perror("Failed to join with th2.\n"); 52 } 53 printf("the process joins with thread th3\n"); 54 if (pthread_join(th3, &rval) != 0) { 55 perror("Failed to join with th3.\n"); 56 } 57 58 return 0; 59} 60 61void *calc(void *arg) 62{ 63 mythread_args_t *targs = (mythread_args_t *) arg; 64 int prev; 65 int i; 66 67 pthread_mutex_lock(targs->mlock); 68 69 for(i=0;i<10;i++){ 70 pthread_mutex_lock(targs->mlock); 71 prev = count; 72 73 sleep(rand() % 5); 74 75 count = prev + 1; 76 printf("[%s] %d -> %d\n", (char *)arg, prev, count); 77 sleep(rand() % 5); 78 79 } 80 pthread_mutex_unlock(targs->mlock); 81 82 pthread_exit(NULL); 83} 84 85
原因わかる方いらっしゃいましたら教えていただきたいです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/06/05 13:03
2020/06/05 13:07
退会済みユーザー
2020/06/05 13:45
2020/06/05 14:13
退会済みユーザー
2020/06/07 12:14