openwrt cmakelists pthread_create
时间: 2023-11-17 16:04:41 浏览: 85
Thread创建
根据提供的引用内容,我们可以知道pthread_create()是Linux下创建线程的API接口。在OpenWrt中,也可以使用pthread_create()来创建线程。在使用pthread_create()时,需要包含<pthread.h>头文件。同时,需要传递四个参数:线程标识符、线程属性、线程函数和函数参数。其中,线程函数必须是一个指向函数的指针,该函数必须返回void*类型的指针,函数参数是一个指向void类型的指针。在CMakeLists.txt文件中,可以使用target_link_libraries()函数将pthread库链接到目标文件中,以便在编译时使用pthread_create()函数。
阅读全文