- 论坛徽章:
- 0
|
这是apue书上的一个例子,测试某些文件是否是STREAMS
- #include <stdio.h>
- #include <fcntl.h>
- #include <stdlib.h>
- #include <sys/ioctl.h>
- #include <stropts.h>
- #include <string.h>
- #include <errno.h>
- int isastrem(int fd)
- {
- return (ioctl(fd, I_CANPUT, 0) != -1);
- }
- int main(int argc, char *argv[])
- {
- int i;
- int fd;
- for (i = 1; i < argc; i++)
- {
- if ((fd = open(argv[i], O_RDONLY)) == -1)
- {
- printf("%s:can't open\n", argv[i]);
- continue;
- }
- if (isastream(fd) == 0)
- printf("%s: not a stream: %s\n", argv[i], strerror(errno));
- else
- printf("%s: stream device\n", argv[i]);
- }
- exit(0);
- }
复制代码
编译产生a.out
我执行 ./a.out /dev/console:
/dev/console:not a stream:Success
这里好像矛盾了,检测下来/dev/console 不是STREAMS, 可是又没有设置errno
怎么回事呢 |
|