g++编译线程失败

来源:互联网 发布:东北青年网络大电影 编辑:程序博客网 时间:2024/06/10 15:25

原文地址:

http://blog.chinaunix.net/uid-26748613-id-3378023.html



 

点击(此处)折叠或打开

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <pthread.h>
  4. void thread(void)
  5. {
  6.     int i;
  7.     for(i=0;i<3;i++)
  8.      printf("This is a pthread.\n");
  9. }

  10. int main(void)
  11. {
  12.     pthread_t id;
  13.     int i,ret;
  14.     ret=pthread_create(&id,NULL,(void*) thread,NULL);
  15.     if (ret!= 0){
  16.         printf ("Create pthread error!\n");
  17.         exit (1);
  18.     }
  19.     for(i=0;i<3;i++)
  20.      printf("This is the main process.\n");
  21.     pthread_join(id,NULL);
  22.     return (0);
  23. }


 

//gcc编译通过
This is the main process.
This is the main process.
This is the main process.
This is a pthread.
This is a pthread.
This is a pthread.
//g++编译失败如下
example.c: In function ‘int main()’:
example.c:13: error: invalid conversion from ‘void*’ to ‘void* (*)(void*)’
example.c:13: error:   initializing argument 3 of ‘int pthread_create(pthread_t*, const pthread_attr_t*, void* (*)(void*), void*)’

要使g++编译通过,方法如下:

C++禁止将void指针随意赋值给其他指针。
因此你在把void thread(void)函数的入口转换为void*,然后当作参数调用pthread_create时就出现错误,因为pthread_create的参数里应该是指向形如void* fun(void*)函数的一个指针。
可以修改void thread(void)为void* thread(void*),然后去掉调用时的(void*)强制转换,错误消除。


0 0
原创粉丝点击