pipe.txt
上传用户:xiaoan1112
上传日期:2013-04-11
资源大小:19621k
文件大小:0k
源码类别:

操作系统开发

开发平台:

Visual C++

  1. SUMMARY create a Xenix stile pipe
  2. #include <tools.h>
  3. pipe( pd )
  4. int pd[2];
  5. DESCRIPTION
  6.     pipe()
  7.    Xenix pipe using 286DOS call.  Try to make a 16K pipe, then halve
  8.    request until success. Minimum pipe is 512 bytes.
  9.        If not enough core for pipe, set errno to ENOMEM.
  10.        If not enough file handles,  set errno to EMFILE.
  11.   
  12.   
  13. RETURN VALUE
  14. IMPLEMENTATION
  15. SEE ALSO   
  16. NOTE
  17. EXAMPLE