/src/tools/compat/ |
flock.c | 1 /* $NetBSD: flock.c,v 1.6 2008/04/28 20:24:12 martin Exp $ */ 33 * Emulate flock() with fcntl(), where available. 43 int flock(int fd, int op) { function in typeref:typename:int 47 struct flock fl = {0};
|
/src/sys/external/bsd/compiler_rt/dist/lib/profile/ |
WindowsMMap.c | 120 int flock(int fd, int operation) function in typeref:typename:COMPILER_RT_VISIBILITY int
|
/src/sys/arch/atari/stand/xxboot/ |
xxboot.h | 44 #define flock 0x043e macro
|
/src/lib/librefuse/refuse/ |
v29.h | 82 int (*lock) (const char *, struct fuse_file_info *, int, struct flock *); 93 int (*flock) (const char *, struct fuse_file_info *, int); member in struct:fuse_operations_v29
|
v30.h | 90 int (*lock) (const char *, struct fuse_file_info *, int, struct flock *); 98 int (*flock) (const char *, struct fuse_file_info *, int); member in struct:fuse_operations_v30
|
v34.h | 78 int (*lock) (const char *, struct fuse_file_info *, int, struct flock *); 85 int (*flock) (const char *, struct fuse_file_info *, int); member in struct:fuse_operations_v34
|
v35.h | 78 int (*lock) (const char *, struct fuse_file_info *, int, struct flock *); 86 int (*flock) (const char *, struct fuse_file_info *, int); member in struct:fuse_operations_v35
|
v38.h | 78 int (*lock) (const char *, struct fuse_file_info *, int, struct flock *); 85 int (*flock) (const char *, struct fuse_file_info *, int); member in struct:fuse_operations_v38
|
/src/sys/sys/ |
fcntl.h | 229 #define F_FLOCK 0x020 /* Use flock(2) semantics for lock */ 283 struct flock { struct 293 /* lock operations for flock(2) */ 343 int flock(int, int);
|
/src/lib/librumphijack/ |
hijack.c | 330 { DUALCALL_FLOCK, "flock", RSYS_NAME(FLOCK) }, 1636 flock(int fd, int operation) function in typeref:typename:int 1640 DPRINTF(("flock -> %d (operation %d)\n", fd, operation)); 1644 op_flock = GETSYSCALL(rump, FLOCK); 1646 op_flock = GETSYSCALL(host, FLOCK);
|