线程需要头文件
#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;
}