linux下创建一个多线程实例(Windows环境下,用cygwin编译器,C语言)

本文主要总结用linux的C语言,创建一个多线程实例,编译器用cygwin,是在Windows10下编译,具体的实例如下所述。

1.1用notepad新建一个.c源文件,如下图所示。

multi_thread.c源文件,输入如下代码:

#include<stdio.h>  
#include<pthread.h>  
#include<string.h>  
#include<sys/types.h>  
#include<unistd.h>  
pthread_t ntid;  
  
void printids(const char *s)  
{  
    pid_t pid;  
    pthread_t tid;  
  
    pid = getpid();  
    tid = pthread_self();  
    printf("%s pid %u tid %u (0x%x)\n",s,(unsigned int)pid,(unsigned int)tid,(unsigned int)tid);  
  
}  
  
void *thread(void *arg)  
{  
    printids("new thread:");  
    return ((void *)0);  
}  
  
int main()  
{  
    int temp;  
    if((temp=pthread_create(&ntid,NULL,thread,NULL)))  
    {  
        printf("can't create thread: %s\n",strerror(temp));  
        return 1;  
     }  
     printids("main thread:");  
     sleep(1);
//   pthread_join(ntid,NULL);  
     return 0;  
}  


1.2在cygwin编译器中,敲入如下代码:

gcc -o multi_thread multi_thread.c -lpthread


1.3编译后,生成multi_thrad.exe可执行文件,敲入如下代码,执行后输出结果如下图所示:

./multi_thread




参考内容:

https://blog.csdn.net/JiangzhouHe/article/details/70946811(重点参考)

https://blog.csdn.net/laozhuxinlu/article/details/51768298

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

三公子Tjq

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值