pipe.txt
资源名称:DOS系统的源代码.rar [点击查看]
上传用户:xiaoan1112
上传日期:2013-04-11
资源大小:19621k
文件大小:0k
源码类别:
操作系统开发
开发平台:
Visual C++
- SUMMARY create a Xenix stile pipe
- #include <tools.h>
- pipe( pd )
- int pd[2];
- DESCRIPTION
- pipe()
- Xenix pipe using 286DOS call. Try to make a 16K pipe, then halve
- request until success. Minimum pipe is 512 bytes.
- If not enough core for pipe, set errno to ENOMEM.
- If not enough file handles, set errno to EMFILE.
- RETURN VALUE
- IMPLEMENTATION
- SEE ALSO
- NOTE
- EXAMPLE