File: trynamedpipebug.c

package info (click to toggle)
bglibs 2.04%2Bdfsg-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,500 kB
  • sloc: ansic: 15,824; perl: 674; sh: 63; makefile: 29
file content (22 lines) | stat: -rw-r--r-- 468 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <sys/types.h>
#include <fcntl.h>
#include <sys/time.h>
#include <unistd.h>

int main(void)
{
  const char filename[] = ".tmp.fifo";
  int hasbug;
  struct timeval tv;
  fd_set rfds;
  int fd;
  if (mknod(filename, S_IFIFO | 0600, 0) != 0)
    return 1;
  fd = open(filename, O_RDONLY | O_NDELAY);
  FD_ZERO(&rfds);
  FD_SET(fd,&rfds);
  tv.tv_sec = tv.tv_usec = 0;
  hasbug = select(fd+1, &rfds, 0, 0, &tv) > 0;
  unlink(filename);
  return hasbug ? 0 : 1;
}