Linux多线程初体验

Posted veaxen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux多线程初体验相关的知识,希望对你有一定的参考价值。

直接上代码

#include "pthread.h"    //线程库,线程不是通过内核实现的
#include "stdio.h"
#include "stdlib.h"
#include "unistd.h"

void* thread_func(void *arg){
        int *val = (int*)arg;
        printf("Hi!I‘m a thread!
");
        if(NULL != arg){
                printf("argument set:%d
",*val);
        }
}

int main(){
        pthread_t tid;
        int t_arg = 100;

        if(pthread_create(&tid,NULL,thread_func,&t_arg)){       //创建线程,如果成功返回0
                printf("Fail to create thread!
");
        }

        sleep(1);       //等待1s,否则进程先结束那么线程就无法运行了
        printf("Main thread!
");
        return 0;
}

写好代码之后使用编译命令 gcc -o pthread pthread.c会出现如下错误:

/tmp/cccBslRQ.o:在函数‘main’中:
pthread.c:(.text+0x66):对‘pthread_create’未定义的引用
collect2: error: ld returned 1 exit status

这是由于pthread库不是Linux的标准库,需给编译器指定连接的库,使用gcc -o pthread pthread.c -lpthread命令,编译器会寻找libpthread.a静态库文件,并且连接到用户代码。
编译好之后运行的结果如下:

Hi!I‘m a thread!
argument set:100
Main thread!

以上是关于Linux多线程初体验的主要内容,如果未能解决你的问题,请参考以下文章

Linux初体验

Vert.x初体验

暑假第一篇,linux学习初体验

第三次随笔--安装虚拟机及学习linux系统初体验

MySQL数据库初体验

锁的初体验