我使用以下代码创建了两个线程:
//header files
#include <pthread.h>
struct thread_arg
{
int var1;
int var2;
};
void *serv_com(void *pass_arg)
{
struct thread_arg *con = pass_arg;
//required statements irrelevant to the issue
pthread_exit(NULL);
}
void *cli_com(void *pass_arg)
{
struct thread_arg *con = pass_arg;
//required statements irrelevant to the issue
pthread_exit(NULL);
}
int main()
{
pthread_t inter_com;
//necessary code
while(1)
{
th_err_s = pthread_create(&inter_com, NULL, serv_com, (void *)&pass_arg);
th_err_c = pthread_create(&inter_com, NULL, cli_com, (void *)&pass_arg);
if (th_err_s || th_err_c)
{
printf("Alert! Error creating thread! Exiting Now!");
exit(-1);
}
}
pthread_exit(NULL);
return 1;
}
然后我使用以下命令在linux中编译了上面的代码:
gcc -o sample sample.c
它返回以下错误消息:
inter.c:(.text+0x374): undefined reference to `pthread_create'
inter.c:(.text+0x398): undefined reference to `pthread_create'
collect2: ld returned 1 exit status
我应该怎么做才能正确编译这个文件。我确信它没有语法错误或任何东西,因为当我注释掉 while 循环内的所有内容时,程序正在正确编译并且我验证了 pthread_create 语法是正确的。我是否必须发出其他命令来编译文件?
编辑:在上面的代码中创建两个线程有什么问题吗?程序一旦运行就会退出并显示错误消息。可能是什么问题,我该如何解决?提前致谢。