免费注册 查看新帖 |

Chinaunix

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

关于isastream() [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-01-21 16:33 |只看该作者 |倒序浏览
我程序里调用了这个函数
编译运行也都通过了
可是我man -a isastream 却找不到关于它的说明
这是怎么回事?

论坛徽章:
0
2 [报告]
发表于 2009-01-21 18:24 |只看该作者
这是apue书上的一个例子,测试某些文件是否是STREAMS

  1. #include <stdio.h>
  2. #include <fcntl.h>
  3. #include <stdlib.h>
  4. #include <sys/ioctl.h>
  5. #include <stropts.h>
  6. #include <string.h>
  7. #include <errno.h>

  8. int isastrem(int fd)
  9. {
  10.         return (ioctl(fd, I_CANPUT, 0) != -1);
  11. }

  12. int main(int argc, char *argv[])
  13. {
  14.         int i;
  15.         int fd;

  16.         for (i = 1; i < argc; i++)
  17.         {
  18.                 if ((fd = open(argv[i], O_RDONLY)) == -1)
  19.                 {
  20.                         printf("%s:can't open\n", argv[i]);
  21.                         continue;
  22.                 }
  23.                 if (isastream(fd) == 0)
  24.                         printf("%s: not a stream: %s\n", argv[i], strerror(errno));
  25.                 else
  26.                         printf("%s: stream device\n", argv[i]);
  27.         }

  28.         exit(0);
  29. }
复制代码


编译产生a.out
我执行 ./a.out /dev/console:
/dev/console:not a stream:Success

这里好像矛盾了,检测下来/dev/console 不是STREAMS, 可是又没有设置errno
怎么回事呢

论坛徽章:
0
3 [报告]
发表于 2009-01-21 18:26 |只看该作者
其实上面的isastream()不用自己实现,程序也能成功编译,执行结果也是一样的
我想搞清楚isastream() 的说明,看一下他的返回值到底是如何的
可是man -a isastream()没有相关说明

论坛徽章:
0
4 [报告]
发表于 2009-01-22 16:50 |只看该作者
这是我从网上搜到的关于isastream 的man page
可是我执行man 3 isatream 依然返回错误信息
大家能帮我看看你们系统上是否有isastream的man 手册吗


isastream(3) - Linux man page

Name
isastream - test a file descriptor (STREAMS)

Synopsis
#include <stropts.h>
int isastream(int fildes);

Description
The isastream() function shall test whether fildes, an open file descriptor, is associated with a STREAMS-based file.

Return Value
Upon successful completion, isastream() shall return 1 if fildes refers to a STREAMS-based file and 0 if not. Otherwise, isastream() shall return -1 and set errno to indicate the error.

Errors
The isastream() function shall fail if:
EBADF
    The fildes argument is not a valid open file descriptor.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP