- 论坛徽章:
- 1
|
如题,在.c文件用也加入了#include<pthread.h>,但还是通不过编译,提示对‘pthread_creat’未定义的引用,求高手指导
代码如下:- #include<stdio.h>
- #include<pthread.h>
- #include<errno.h>
- #include<string.h>
- #include<errno.h>
- #include<stdlib.h>
- void cleanup(void *arg)
- {
- printf("cleanup: %s\n",(char *)arg);
- }
- void * func1(void *arg)
- {
- printf("pthread 1 start");
- pthread_cleanup_push( cleanup, "thread 1 first handler" );
- pthread_cleanup_push( cleanup, "thread 1 second handler" );
- printf("have push 2 handler into stack");
- if(arg)
- return ((void *)1);
- pthread_cleanup_pop(0);
- pthread_cleanup_pop(0);
- return ((void *)2);
- }
- void * func2(void *arg)
- {
- printf("pthread 2 start");
- pthread_cleanup_push( cleanup, "thread 2 first handler" );
- pthread_cleanup_push( cleanup, "thread 2 second handler" );
- printf("have push 2 handler into stack");
- if(arg)
- pthread_exit(NULL);
- pthread_cleanup_pop(0);
- pthread_cleanup_pop(0);
- return ((void *)2);
- }
- int main(int argc, char *argv[])
- {
- pid_t pid;
- pthread_t tid1, tid2;
- int err;
- void *pointer;
- err = pthread_creat( &tid1, NULL, func1, (void *)1 );
- if(err !=0)
- printf("creat pthread1 error %s\n", strerror(err));
- err = pthread_creat( &tid2, NULL, func2, (void *)1 );
- if(err !=0)
- printf("creat pthread2 error %s\n", strerror(err));
- err = pthread_join(tid1,&pointer );
- if(err !=0)
- printf("pthread1 join error %s\n", strerror(err));
- printf("pthread 1 have finished %d\n", (int)pointer);
- err = pthread_join(tid1,&pointer );
- if(err !=0)
- printf("pthread1 join error %s\n", strerror(err));
- printf("pthread 2 have finished %d\n", (int)pointer);
- exit(0);
- }
- 1,1 顶端
复制代码 |
|