Chinaunix首页 | 论坛 | 博客
  • 博客访问: 825200
  • 博文数量: 109
  • 博客积分: 650
  • 博客等级: 上士
  • 技术积分: 1483
  • 用 户 组: 普通用户
  • 注册时间: 2012-03-01 17:29
文章分类

全部博文(109)

文章存档

2016年(5)

2015年(21)

2014年(16)

2013年(38)

2012年(29)

分类: LINUX

2012-10-18 18:00:36


 

点击(此处)折叠或打开

  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*)强制转换,错误消除。

阅读(3963) | 评论(0) | 转发(0) |
0

上一篇:系统调用

下一篇:用数组实现栈和队列C++

给主人留下些什么吧!~~