- 论坛徽章:
- 0
|
调试并发服务器的时候出现下面的错误
[root@BillingServer unix]# gcc -o PRG6_5 PRG6_5.c
/tmp/cc37bHFj.o(.text+0x16e): In function `main':
: undefined reference to `pthread_create'
collect2: ld returned 1 exit status
程序代码肯定是下面这个部分的问题
- struct ARG arg;
- arg.connfd = connectfd;
- memcpy((void *)&arg.client, &client, sizeof(client));
- if (pthread_create(&thread, NULL, start_routine, (void *) & arg))
- {
- perror("Pthread_create() error");
- exit(1);
- }
复制代码
posix线程编程是第一次接触,不太清楚,希望高手指点指点
以下是ibm官方网站给的一些提示:
POSIX通过pthread_create()函数创建线程,API定义如下:
int pthread_create(pthread_t * thread, pthread_attr_t * attr,
void * (*start_routine)(void *), void * arg)
与fork()调用创建一个进程的方法不同,pthread_create()创建的线程并不具备与主线程(即调用pthread_create()的线程)同样的执行序列,而是使其运行start_routine(arg)函数。thread返回创建的线程ID,而attr是创建线程时设置的线程属性(见下)。pthread_create()的返回值表示线程创建是否成功。尽管arg是void *类型的变量,但它同样可以作为任意类型的参数传给start_routine()函数;同时,start_routine()可以返回一个void *类型的返回值,而这个返回值也可以是其他类型,并由pthread_join()获取。 |
|