diff options
author | Mole Shang <[email protected]> | 2024-02-18 16:27:05 +0800 |
---|---|---|
committer | Mole Shang <[email protected]> | 2024-02-18 16:27:05 +0800 |
commit | 0cf897cbe05fd8485162619db4244f4159d0eb52 (patch) | |
tree | b18d401102a0215f979f12ec3acf709f9e7224c4 /kernel/fcntl.h | |
parent | 659b978caa5c97bbc2477d1393461c944544a1a7 (diff) | |
download | xv6-labs-fs.tar.gz xv6-labs-fs.tar.bz2 xv6-labs-fs.zip |
lab fs/symlink: finishfs
Diffstat (limited to 'kernel/fcntl.h')
-rw-r--r-- | kernel/fcntl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/fcntl.h b/kernel/fcntl.h index 44861b9..d7bb43b 100644 --- a/kernel/fcntl.h +++ b/kernel/fcntl.h @@ -1,5 +1,6 @@ #define O_RDONLY 0x000 #define O_WRONLY 0x001 #define O_RDWR 0x002 +#define O_NOFOLLOW 0x010 #define O_CREATE 0x200 #define O_TRUNC 0x400 |