资源简介
官网下载地址:https://cmake.org/files/
但是下载及其的慢,这里很快!!!!!
但是下载及其的慢,这里很快!!!!!
代码片段和文件信息
#include
void* start_routine(void* args)
{
return args;
}
int main(void)
{
/* This is a compile and link test no code to actually run things. */
pthread_t thread;
pthread_create(&thread 0 start_routine 0);
pthread_join(thread 0);
return 0;
}
评论
共有 条评论