-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhowtouse_pthread.c
51 lines (40 loc) · 1.15 KB
/
howtouse_pthread.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#define NUM_THREADS 10
void *thread_func(void *arg) {
int id = (int)arg; //(1)
for (int i = 0; i < 5; i++) {
printf("id = %d, i = %d\n", id, i);
sleep(1);
}
return "finished!";
}
//デタッチスレッドの作成
int main(int argc, char *argv[]) {
pthread_attr_t attr;
//アトリビュートの初期化
if(pthread_attr_init(&attr) != 0) {
perror("pthread_attr_init");
return -1;
}
//アトリビュートをデタッチスレッドに設定
if(pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED) != 0) {
perror("pthread_attr_setdetachstate");
return -1;
}
pthread_t th; // スレッド用のハンドラを保存する配列。
//スレッドの生成 アトリビュートを指定
if(pthread_create(&th, &attr, thread_func, NULL) != 0) {
perror("pthread_create");
return -1;
}
//アトリビュートの破棄
if(pthread_attr_destroy(&attr) != 0) {
perror("pthread_attr_destroy");
return -1;
}
sleep(7);
return 0;
}