home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume32 / pol / part01 / poltest.c < prev    next >
C/C++ Source or Header  |  1992-10-18  |  305b  |  21 lines

  1. #include <stdio.h>
  2. #include <fcntl.h>
  3. #include <poll.h>
  4.  
  5. main()
  6. {
  7.     int fd;
  8.     struct pollfd pl;
  9.     int x;
  10.     
  11.  
  12.     printf("fd = %d\n",fd);
  13.     pl.fd = 0;
  14.     pl.events = POLLIN;
  15.     printf("Begin ioctl, return\n");
  16.     if ((x=pol(&pl, 1, 5000)) == -1)
  17.          halt("PERROR : ioctl fail\n");
  18.     printf("End ioctl\n");
  19.     close(fd);
  20. }     
  21.