- 论坛徽章:
- 0
|
代码如下:
- #include <stdio.h>
- #include <stdlib.h>
- #include <mqueue.h>
- #include <unistd.h>
- #include <fcntl.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- # define FILE_MODE (S_IRUSR|S_IRGRP|S_IWUSR|S_IROTH)
- int
- main(int argc, char *argv[])
- {
- int c,flags;
- mqd_t mqd;
- flags = O_RDWR | O_CREAT;
- while((c = getopt(argc, argv, "e")) != -1)
- {
- switch (c)
- {
- case 'e':
- flags |= O_EXCL;
- break;
- }
- }
- if (optind != argc -1)
- {
- fprintf (stderr, "usage:mqcreate [-e] <name>\n");
- exit (-1);
- }
- mqd = mq_open(argv[optind], flags, FILE_MODE, NULL);
- mq_close(mqd);
- exit(0);
- }
复制代码
代码摘自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.
不知道为何还不能编译? |
|