blob: 6427cd80fc62b01c07d4cc5186a7c2d35ad7db5c (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
/*++
/* NAME
/* non_blocking 3
/* SUMMARY
/* set/clear non-blocking flag
/* SYNOPSIS
/* #include <iostuff.h>
/*
/* int non_blocking(int fd, int on)
/* DESCRIPTION
/* the \fInon_blocking\fR() function manipulates the non-blocking
/* flag for the specified open file, and returns the old setting.
/*
/* Arguments:
/* .IP fd
/* A file descriptor.
/* .IP on
/* For non-blocking I/O, specify a non-zero value (or use the
/* NON_BLOCKING constant); for blocking I/O, specify zero
/* (or use the BLOCKING constant).
/*
/* The result is non-zero when the non-blocking flag was enabled.
/* DIAGNOSTICS
/* All errors are fatal.
/* LICENSE
/* .ad
/* .fi
/* The Secure Mailer license must be distributed with this software.
/* AUTHOR(S)
/* Wietse Venema
/* IBM T.J. Watson Research
/* P.O. Box 704
/* Yorktown Heights, NY 10598, USA
/*--*/
/* System interfaces. */
#include "sys_defs.h"
#include <fcntl.h>
/* Utility library. */
#include "msg.h"
#include "iostuff.h"
/* Backwards compatibility */
#ifndef O_NONBLOCK
#define PATTERN FNDELAY
#else
#define PATTERN O_NONBLOCK
#endif
/* non_blocking - set/clear non-blocking flag */
int non_blocking(fd, on)
int fd;
int on;
{
int flags;
if ((flags = fcntl(fd, F_GETFL, 0)) < 0)
msg_fatal("fcntl: get flags: %m");
if (fcntl(fd, F_SETFL, on ? flags | PATTERN : flags & ~PATTERN) < 0)
msg_fatal("fcntl: set non-blocking flag %s: %m", on ? "on" : "off");
return ((flags & PATTERN) != 0);
}
|