資源簡介
CMake官網提供的下載鏈接不穩定,經常出現下載很慢或下載失敗的情況,cmake-3.14.0-Linux-x86_64是linux最新的cmake版本。
代碼片段和文件信息
#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;
}
評論
共有 條評論