好好爱自己!

C语言 - pthread

pthread_create函数

    原型:int  pthread_create((pthread_t  *thread,  pthread_attr_t  *attr,  void  *(*start_routine)(void  *),  void  *arg)

    用法:#include  <pthread.h>

    功能:创建线程(实际上就是确定调用该线程函数的入口点),在线程创建以后,就开始运行相关的线程函数。

    说明:thread:线程标识符;

              attr:线程属性设置;

              start_routine:线程函数的起始地址;

              arg:传递给start_routine的参数;

              返回值:成功,返回0;出错,返回-1。

    举例:

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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#include <pthread.h>
#include <stdio.h>
#include <sys/types.h>
 
#include <unistd.h>
#include <sys/syscall.h>
#define gettid() syscall(SYS_gettid)
 
 
 
 
#define ARRAYSIZE 17
#define NUMTHREADS 4
 
struct ThreadData {
        int start, stop;
        int* array;
};
 
void* squarer(void* td)
{
     struct ThreadData* data=(struct ThreadData*) td;
 
     int start=data->start;
     int stop=data->stop;
     int* array=data->array;
     int i;
     pid_t tid1;
 
     tid1 = gettid(); //error at this statement//`
     printf("tid : %d\n",tid1);
 
     for (i=start; i<stop; i++) {
       //  sleep(1);
         array[i]=i*i;
         printf("arr[%d] = [%d]\n",i,array[i]);
     printf("%d to %d", start, stop);
     }
   return NULL;
}
 
int main(void) {
    int array[ARRAYSIZE];
    pthread_t thread[NUMTHREADS];
    struct ThreadData data[NUMTHREADS];
    int i;
 
    int tasksPerThread=(ARRAYSIZE+NUMTHREADS-1)/NUMTHREADS;
 
    for (i=0; i<NUMTHREADS; i++) {
            data[i].start=i*tasksPerThread;
            data[i].stop=(i+1)*tasksPerThread;
            data[i].array=array;
    }
 
    data[NUMTHREADS-1].stop=ARRAYSIZE;
 
    for (i=0; i<NUMTHREADS; i++) {
            pthread_create(&thread[i], NULL, squarer, &data[i]);
    }
 
    for (i=0; i<NUMTHREADS; i++) {
            pthread_join(thread[i], NULL);
    }
 
    for (i=0; i<ARRAYSIZE; i++) {
            printf("%d ", array[i]);
    }
    printf("\n");
 
    return 0;
}

  编译: gcc -pthread 3.cc

  运行: ./a.out

 

posted @   立志做一个好的程序员  阅读(1489)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 25岁的心里话
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 按钮权限的设计及实现

不断学习创作,与自己快乐相处

点击右上角即可分享
微信分享提示