.. | .. |
---|
3 | 3 | #define _PARISC_FCNTL_H |
---|
4 | 4 | |
---|
5 | 5 | #define O_APPEND 000000010 |
---|
6 | | -#define O_BLKSEEK 000000100 /* HPUX only */ |
---|
7 | 6 | #define O_CREAT 000000400 /* not fcntl */ |
---|
8 | 7 | #define O_EXCL 000002000 /* not fcntl */ |
---|
9 | 8 | #define O_LARGEFILE 000004000 |
---|
10 | 9 | #define __O_SYNC 000100000 |
---|
11 | 10 | #define O_SYNC (__O_SYNC|O_DSYNC) |
---|
12 | | -#define O_NONBLOCK 000200004 /* HPUX has separate NDELAY & NONBLOCK */ |
---|
| 11 | +#define O_NONBLOCK 000200000 |
---|
13 | 12 | #define O_NOCTTY 000400000 /* not fcntl */ |
---|
14 | | -#define O_DSYNC 001000000 /* HPUX only */ |
---|
15 | | -#define O_RSYNC 002000000 /* HPUX only */ |
---|
| 13 | +#define O_DSYNC 001000000 |
---|
16 | 14 | #define O_NOATIME 004000000 |
---|
17 | 15 | #define O_CLOEXEC 010000000 /* set close_on_exec */ |
---|
18 | 16 | |
---|
19 | 17 | #define O_DIRECTORY 000010000 /* must be a directory */ |
---|
20 | 18 | #define O_NOFOLLOW 000000200 /* don't follow links */ |
---|
21 | | -#define O_INVISIBLE 004000000 /* invisible I/O, for DMAPI/XDSM */ |
---|
22 | 19 | |
---|
23 | 20 | #define O_PATH 020000000 |
---|
24 | 21 | #define __O_TMPFILE 040000000 |
---|