-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy path3.14.c
49 lines (39 loc) · 987 Bytes
/
3.14.c
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
#include "apue.h"
#include <fcntl.h>
int main(int argc, char *argv[]) {
int val;
if (argc != 2) {
err_quit("usage: a.out <descriptor#>");
}
if ((val = fcntl(atoi(argv[1]), F_GETFL, 0)) < 0) {
err_sys("fcntl error for fd %d", atoi(argv[1]));
}
switch (val & O_ACCMODE) {
case O_RDONLY:
printf("read only");
break;
case O_WRONLY:
printf("write only");
break;
case O_RDWR:
printf("read write");
break;
default:
err_dump("unknown access mode");
}
if (val & O_APPEND) {
printf(", append");
}
if (val & O_NONBLOCK) {
printf(", nonblocking");
}
if (val & O_SYNC) {
printf(", synchronous writes");
}
#if !defined(_POSIX_C_SOURCE) && defined(O_FSYNC) && (O_FSYNC != O_SYNC)
if (val & O_FSYNC)
printf(", synchronous writes");
#endif
putchar('\n');
return 0;
}