多线程学习笔记
C++ 直接调用操作系统创建线程
fileName: thread.c
#include <pthread.h>
#include <stdio.h>
pthread_t pid;
void* thread_entity(void* args){
while(1){
usleep(100);
printf("I am new thread \n");
}
}
int main(){
//启动一个线程
pthread_create(&pid,NULL,th.
原创
2020-08-02 12:46:38 ·
154 阅读 ·
0 评论