pthread
库创建线程。,``c,#include,void* thread_function(void* arg) {, // 线程代码,},int main() {, pthread_t thread;, pthread_create(&thread, NULL, thread_function, NULL);, pthread_join(thread, NULL);, return 0;,},
``pthread
库创建线程。,``c,#include,void* thread_function(void* arg) {, // 线程代码,},int main() {, pthread_t thread;, pthread_create(&thread, NULL, thread_function, NULL);, pthread_join(thread, NULL);, return 0;,},
``Powered By Z-BlogPHP 1.7.3