summaryrefslogtreecommitdiff
path: root/src/trynpbg1.c
blob: da3e47e3a37a90643572ebf04bdb291d445e7337 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include "fifo.h"
#include "open.h"
#include "select.h"

#define FN "temp-trynpbg1.fifo"

int main()
{
  int flagbug;
  struct timeval instant;
  fd_set rfds;

  flagbug = 0;
  if (fifo_make(FN, 0600) != -1) {
    close(0);
    if (open_read(FN) == 0) {
      FD_ZERO(&rfds);
      FD_SET(0, &rfds);
      instant.tv_sec = instant.tv_usec = 0;
      if (select(1, &rfds, (fd_set *)0, (fd_set *)0, &instant) > 0) flagbug = 1;
    }
    unlink(FN);
  }
  _exit(!flagbug);
}