程序代码中含有线程pthread_create时需要对编译选项的修改;
在编译程序时,如果代码中包括了pthread_create,线程的使用,那么需要做以下处理:
1、在代码中增加头文件#include <pthread.h>
2、在Makefile的gcc选项中增加-lpthread
程序代码中含有线程pthread_create时需要对编译选项的修改;
在编译程序时,如果代码中包括了pthread_create,线程的使用,那么需要做以下处理:
1、在代码中增加头文件#include <pthread.h>
2、在Makefile的gcc选项中增加-lpthread