免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2774 | 回复: 3
打印 上一主题 下一主题

关于linux的posix message queues的实现,程序不能编译通过 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-01-05 12:19 |只看该作者 |倒序浏览
代码如下:

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <mqueue.h>
  4. #include <unistd.h>
  5. #include <fcntl.h>
  6. #include <sys/types.h>
  7. #include <sys/stat.h>

  8. # define FILE_MODE (S_IRUSR|S_IRGRP|S_IWUSR|S_IROTH)

  9. int
  10. main(int argc, char *argv[])
  11. {
  12.   int    c,flags;
  13.   mqd_t  mqd;

  14.   flags = O_RDWR | O_CREAT;

  15.   while((c = getopt(argc, argv, "e")) != -1)
  16.     {
  17.       switch (c)
  18.         {
  19.         case 'e':
  20.           flags |= O_EXCL;
  21.           break;
  22.         }
  23.     }

  24.   if (optind != argc -1)
  25.     {
  26.       fprintf (stderr, "usage:mqcreate [-e] <name>\n");
  27.       exit (-1);
  28.     }

  29.   mqd = mq_open(argv[optind], flags, FILE_MODE, NULL);
  30.   mq_close(mqd);
  31.   exit(0);
  32. }
复制代码


代码摘自UNIX网络编程的第5章,编译结果是不能找到mq_open,mq_close的实现的库。

查阅MAN手册与GOOGLE之后,这里讲的比较明白:
http://lists.debian.org/debian-glibc/2004/07/msg00314.html

上面提到在kernel 2.6.6-rc1以后已把支持直接加入kernel了,我编译的环境是FC4,内核已经是2.6.11了。
gcc版本4.

不知道为何还不能编译?

论坛徽章:
0
2 [报告]
发表于 2006-01-05 12:46 |只看该作者
gcc -o outfile infile.c -lrt

论坛徽章:
0
3 [报告]
发表于 2006-01-05 13:01 |只看该作者
多谢了,可以了。

论坛徽章:
0
4 [报告]
发表于 2006-01-05 13:14 |只看该作者
另外还想请教各位,
常常有编译时找不到库的时候,一般怎么找到对应的库呢?
像上面的情况,man手册里是没有写的。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP