4 Copyright © 2008, The AROS Development Team. All rights reserved.
7 Desc: 4.4BSD header file sys/stat.h
11 /* flock() operations */
14 #include <sys/types.h>
17 #define LOCK_SH 1 /* Shared lock. */
18 #define LOCK_EX 2 /* Exclusive lock. */
19 #define LOCK_UN 8 /* Unlock. */
21 /* operation modifiers (combined with OR) */
23 #define LOCK_NB 4 /* Non-blocking operation */
25 /* function declarations */
29 int flock (int fd
, int operation
);
33 #endif /* _SYS__FILE_H_ */