多线程模板

Linux多线程程序:

用到的函数:

int pthread_create(pthread_t *tid, const pthread_attr_t *attr, void *(*func) (void *), void *arg);

pthread_create用于创建一个线程,成功返回0,否则返回Exxx(为正数)。

pthread_t tid:线程id的类型为pthread_t,通常为无符号整型,当调用pthread_create成功时,通过tid指针返回。
const pthread_attr_t *attr:指定创建线程的属性,如线程优先级、初始栈大小、是否为守护进程等。可以使用NULL来使用默认值,通常情况下我们都是使用默认值。
void *(*func) (void *):函数指针func,指定当新的线程创建之后,将执行的函数。
void *arg:线程将执行的函数的参数。如果想传递多个参数,请将它们封装在一个结构体中。

int pthread_join(pthread_t thread, void **retval);
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <pthread.h>
#include <unistd.h>


void *fun_1(void *arg)//线程1
{
    char *p = (char *)arg;
    while(1){
        puts(p);
        sleep(1);
    }
}
void *fun_2(void *arg)//线程2
{
    char *p = (char *)arg;
    while(1){
        puts(p);
        sleep(1);
    }
}

int main()//main函数内为主线程,主线程在运行子线程才能正常运行。
{
    pthread_t tid_1;
    pthread_t tid_2;
    if(0 != pthread_create(&tid_1, NULL, fun_1, "hello world!"))//将hello word!传给子函数的arg
    {
        perror("pthread_create1");
        return -1;
    }
    if(0 != pthread_create(&tid_2, NULL, fun_2, "hi word!"))//将hi word!传给子函数的arg
    {
        perror("pthread_create2");
        return -1;
    }
    pthread_join(tid_1,NULL);
    pthread_join(tid_2,NULL);

}

注意:多线程程序在编译的时候需要链接对应的库-lpthread

posted @ 2022-03-30 14:43  西北小蚂蚁  阅读(44)  评论(0编辑  收藏  举报