rqdmap
首页
博客
算法
漫评
关于
日志
创建时间
修改时间
字数
多线程
linux多线程
2021.03.23 12:45
2023.05.29 23:05
Linux
多线程
2132字
在linux下,Pthread是一套通用的线程库,由POSIX提出,具有较好的移植性。 使用头文件<pthread.h> 线程基本操作 线程的创建与退出 pthead_create c 1int pthread_create(pthread_t *thread, pthread_attr_t * attr, void *(*start_routine)(void *), void *arg); 传入参数:thread为线程标识符,attr为线程属性设置,start_routine为线程函数起始地址,arg为传给start_routine的参数。 ...