linux线程——pthread_create、pthread_cancel、pthread_join、pthread_testcancel();

线程需要头文件
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <string.h>
#include <pthread.h>
创建线程 – pthread_create
函数原型:
// 如果成功0,失败返回错误号// perror() 不能使用该函数打印错误信息
int pthread_create(
pthread_t *thread, // 线程ID=无符号长整形
const pthread_attr_t *attr, // 线程属性, NULL
void *(*start_routine) (void *), // 线程处理函数
void *arg // 线程处理函数参数
);
参数:
thread: 传出参数, 线程创建成功之后,会被设置一个合适的值
attr: 默认传NULL
start_routine: 子线程的处理函数
arg: 回调函数的参数
主线程先退出, 子线程会被强制结束验证线程之间共享全局变量
eg:

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <string.h>
#include <pthread.h>
void* myfunc(void* arg)
{
while(1)
{
    int num = (int)arg;
    printf("%dth child pthread id: %lu\n", num, pthread_self());
  //  return NULL;}}int main(int argc, const char* argv[])
  }
}
int main(int argc, const char* argv[])
{
    // 创建子线程
    pthread_t thid[5];
    // 返回错误号
    for(int i=0; i<5; ++i)
    {    
        int ret = pthread_create(&thid[i], NULL, myfunc, (void*)i);
        if(ret != 0)
        {
            printf("error number: %d\n", ret);
            // 根据错误号打印错误信息
            printf("error information: %s\n", strerror(ret));
        }
    }
    printf("parent pthread id: %lu\n", pthread_self());
    while(1);   
    return 0;
}

阻塞等待线程退出, 获取线程退出状态 – pthread_join
函数原型:
int pthread_join(pthread_t thread, void *retval);
thread:要回收的子线程的线程id
retval:读取线程退出的时候携带的状态信息
传出参数
void
ptr;

杀死(取消)线程 – pthread_cancel
函数原型: int pthread_cancel(pthread_t thread);
使用注意事项:在要杀死的子线程对应的处理的函数的内部, 必须做过一次系统调用.

线程取消点–pthread_testcancel()
描述:函数在运行的线程中创建一个取消点,如果cancellation无效则此函数不起作用。
eg:

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <string.h>
#include <pthread.h>
int number = 100;
void* myfunc(void* arg)
{
	while(1)
	{
		pthread_testcancel();
		printf("child pthread id: %lu\n", pthread_self());
		printf("child thread .....\n");
		for(int i=0; i<5; ++i)
		{
			printf("child i = %d\n", i);
		}
		sleep(1000);
	}
}
int main(int argc, const char* argv[])
{
    // 创建子线程
    pthread_t thid;
    // 返回错误号
    int ret = pthread_create(&thid, NULL, myfunc, NULL);
    if(ret != 0)
    {
        printf("error number: %d\n", ret);
        // 根据错误号打印错误信息
        printf("error information: %s\n", strerror(ret));
    }
    printf("parent pthread id: %lu\n", pthread_self());    
    int *ptr;
    pthread_cancel(thid);
    pthread_join(thid, (int**)&ptr);
    printf("++++++++++ number = %d\n", *ptr);
    printf("parent thread .....\n");
    for(int i=0; i<3; ++i)
    {
        printf("i = %d\n", i);
    }    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值