当前位置:  技术问答>linux和unix

APUE程序清单11-4(线程清理处理程序)编译通不过,请教原因

    来源: 互联网  发布时间:2016-11-10

    本文导语:  APUE程序清单11-4(线程清理处理程序)编译通不过,请教原因。 下面是出错提示: sample11_4.c:19: error: expected identifier or ‘(’ before ‘while’ sample11_4.c:19: error: expected declaration specifiers or ‘...’ before ‘&’ to...

APUE程序清单11-4(线程清理处理程序)编译通不过,请教原因。
下面是出错提示:
sample11_4.c:19: error: expected identifier or ‘(’ before ‘while’
sample11_4.c:19: error: expected declaration specifiers or ‘...’ before ‘&’ token
sample11_4.c:19: warning: data definition has no type or storage class
sample11_4.c:19: error: conflicting types for ‘__pthread_unregister_cancel’
/usr/include/pthread.h:664: error: previous declaration of ‘__pthread_unregister_cancel’ was here
sample11_4.c:19: error: expected identifier or ‘(’ before ‘if’
sample11_4.c:19: error: expected identifier or ‘(’ before ‘}’ token
sample11_4.c:19: error: expected identifier or ‘(’ before ‘while’
sample11_4.c:21: error: expected identifier or ‘(’ before ‘return’
sample11_4.c:22: error: expected identifier or ‘(’ before ‘}’ token
[fsb@fu sample11_4]$ gcc -o sample11_4 sample11_4.c error.c -lpthread
sample11_4.c:19: error: expected identifier or ‘(’ before ‘while’
sample11_4.c:19: error: expected declaration specifiers or ‘...’ before ‘&’ token
sample11_4.c:19: warning: data definition has no type or storage class
sample11_4.c:19: error: conflicting types for ‘__pthread_unregister_cancel’
/usr/include/pthread.h:664: error: previous declaration of ‘__pthread_unregister_cancel’ was here
sample11_4.c:19: error: expected identifier or ‘(’ before ‘if’
sample11_4.c:19: error: expected identifier or ‘(’ before ‘}’ token
sample11_4.c:19: error: expected identifier or ‘(’ before ‘while’
sample11_4.c:20: error: expected identifier or ‘(’ before ‘do’
sample11_4.c:20: error: expected identifier or ‘(’ before ‘while’
sample11_4.c:20: error: expected identifier or ‘(’ before ‘}’ token
sample11_4.c:20: error: expected identifier or ‘(’ before ‘while’
sample11_4.c:20: error: expected declaration specifiers or ‘...’ before ‘&’ token
sample11_4.c:20: warning: data definition has no type or storage class
sample11_4.c:20: error: conflicting types for ‘__pthread_unregister_cancel’
/usr/include/pthread.h:664: error: previous declaration of ‘__pthread_unregister_cancel’ was here
sample11_4.c:20: error: expected identifier or ‘(’ before ‘if’
sample11_4.c:20: error: expected identifier or ‘(’ before ‘}’ token
sample11_4.c:20: error: expected identifier or ‘(’ before ‘while’
sample11_4.c:21: error: expected identifier or ‘(’ before ‘return’
sample11_4.c:22: error: expected identifier or ‘(’ before ‘}’ token
sample11_4.c:34: error: expected identifier or ‘(’ before ‘while’
sample11_4.c:34: error: expected declaration specifiers or ‘...’ before ‘&’ token
sample11_4.c:34: warning: data definition has no type or storage class
sample11_4.c:34: error: conflicting types for ‘__pthread_unregister_cancel’
/usr/include/pthread.h:664: error: previous declaration of ‘__pthread_unregister_cancel’ was here
sample11_4.c:34: error: expected identifier or ‘(’ before ‘if’
sample11_4.c:34: error: expected identifier or ‘(’ before ‘}’ token
sample11_4.c:34: error: expected identifier or ‘(’ before ‘while’
sample11_4.c:35: error: expected identifier or ‘(’ before ‘do’
sample11_4.c:35: error: expected identifier or ‘(’ before ‘while’
sample11_4.c:35: error: expected identifier or ‘(’ before ‘}’ token
sample11_4.c:35: error: expected identifier or ‘(’ before ‘while’
sample11_4.c:35: error: expected declaration specifiers or ‘...’ before ‘&’ token
sample11_4.c:35: warning: data definition has no type or storage class
sample11_4.c:35: error: conflicting types for ‘__pthread_unregister_cancel’
/usr/include/pthread.h:664: error: previous declaration of ‘__pthread_unregister_cancel’ was here
sample11_4.c:35: error: expected identifier or ‘(’ before ‘if’
sample11_4.c:35: error: expected identifier or ‘(’ before ‘}’ token
sample11_4.c:35: error: expected identifier or ‘(’ before ‘while’
sample11_4.c:36: error: expected declaration specifiers or ‘...’ before ‘(’ token
sample11_4.c:36: warning: data definition has no type or storage class
sample11_4.c:36: error: conflicting types for ‘pthread_exit’
/usr/include/pthread.h:234: error: previous declaration of ‘pthread_exit’ was here
sample11_4.c:37: error: expected identifier or ‘(’ before ‘}’ token


希望得到大家的指点,谢谢。

|
pthread_clearup_push
这个写错了。应该是
pthread_cleanup_push

|
建议你把代码贴出来,不是所有人都有你说的这个代码

|
根据错误提示一个一个找,第一眼就感觉缺东少西,是不是环境没配置好?

|
估计缺少头文件
sample11_4.c:19: error: expected identifier or ‘(’ before ‘while’
看看第19行是什么?

|
应该是缺少某个库没安装

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • Mac OS X 10.8 中编译APUE(Unix环境高级编程)的源代码过程
  • 求助! apue的例子无法在linux编译 -- 错误: undefined reference to ...
  • 下载了APUE源码,怎么打不开啊?
  • 文件名为“apue.tar.Z”的文件在UNIX下怎么打开?大家帮帮忙
  • APUE第2版的例2-1的疑问
  • apue书上的概念,读过这本书的请进
  • 刚学完apue,大家给个建议
  • 求apue的课后答案~~~~~~~~~~~~~
  • APUE 看完之后,拿什么练练手?
  • apue.h的问题
  • APUE+macro
  • apue中的一个问题
  • APUE相关章节不容易理解。
  • 关于apue2 中一个例子的提问
  • apue书的的信号函数,看不懂
  • APUE中 system函数的实现中的问题
  • 哪位兄弟在看apue?相互交流一下
  • APUE中“信号”一节的问题
  • apue 上的 Figure3.10运行后,输出怎么是空白
  • apue学习问题 第八章 进程控制 相关
  • apue page113
  • 关于unix环境高级编程的apue的问题


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3