File: ndelay_on.c

package info (click to toggle)
ucspi-tcp 0.88-9
  • links: PTS
  • area: non-free
  • in suites: sarge
  • size: 1,040 kB
  • ctags: 698
  • sloc: ansic: 5,660; makefile: 753; sh: 329
file content (12 lines) | stat: -rw-r--r-- 205 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
10
11
12
#include <sys/types.h>
#include <fcntl.h>
#include "ndelay.h"

#ifndef O_NONBLOCK
#define O_NONBLOCK O_NDELAY
#endif

int ndelay_on(int fd)
{
  return fcntl(fd,F_SETFL,fcntl(fd,F_GETFL,0) | O_NONBLOCK);
}