-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Stephen Rothwell
authored and
Linus Torvalds
committed
Sep 7, 2005
1 parent
398b875
commit 0053482
Showing
23 changed files
with
67 additions
and
527 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 5ba4d46dc44c5399bc4e7a39239de5a1690848a4 | ||
refs/heads/master: 9317259ead88fe6c05120ae1e3ace99738e2c698 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#ifndef _ASM_GENERIC_FCNTL_H | ||
#define _ASM_GENERIC_FCNTL_H | ||
|
||
#define O_ACCMODE 0003 | ||
#define O_RDONLY 0000 | ||
#define O_WRONLY 0001 | ||
#define O_RDWR 0002 | ||
|
||
#define F_DUPFD 0 /* dup */ | ||
#define F_GETFD 1 /* get close_on_exec */ | ||
#define F_SETFD 2 /* set/clear close_on_exec */ | ||
#define F_GETFL 3 /* get file->f_flags */ | ||
#define F_SETFL 4 /* set file->f_flags */ | ||
|
||
/* for F_[GET|SET]FL */ | ||
#define FD_CLOEXEC 1 /* actually anything with low bit set goes */ | ||
|
||
/* operations for bsd flock(), also used by the kernel implementation */ | ||
#define LOCK_SH 1 /* shared lock */ | ||
#define LOCK_EX 2 /* exclusive lock */ | ||
#define LOCK_NB 4 /* or'd with one of the above to prevent | ||
blocking */ | ||
#define LOCK_UN 8 /* remove lock */ | ||
|
||
#define LOCK_MAND 32 /* This is a mandatory flock ... */ | ||
#define LOCK_READ 64 /* which allows concurrent read operations */ | ||
#define LOCK_WRITE 128 /* which allows concurrent write operations */ | ||
#define LOCK_RW 192 /* which allows concurrent read & write ops */ | ||
|
||
#define F_LINUX_SPECIFIC_BASE 1024 | ||
|
||
#endif /* _ASM_GENERIC_FCNTL_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.