home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / unix / unixlib_1 / !UnixLib37_netlib_clib_sys_h_filio < prev    next >
Encoding:
Text File  |  1996-05-10  |  354 b   |  13 lines

  1. #ifndef __sys_filio_h
  2. #define __sys_filio_h
  3.  
  4. /* Freenet programmers library - sys/filio.h - 23/5/95 */
  5.  
  6. #include <sys/iocomm.h>
  7.  
  8. #define FIONREAD _IOR('f', 127, int)   /* Get number of bytes to read */
  9. #define FIONBIO  _IOW('f', 126, int)   /* Set/clear non-blocking i/o */
  10. #define FIOASYNC _IOW('f', 125, int)   /* Set/clear asynchronous i/o */
  11.  
  12. #endif
  13.