diff options
author | dzwdz | 2023-01-06 20:45:30 +0100 |
---|---|---|
committer | dzwdz | 2023-01-06 20:45:30 +0100 |
commit | e0c7bad47a54d865ef6194643e2cd20f6094e507 (patch) | |
tree | a9c731aecaad9c08ff4e732ae5dc8941a60cddd4 /src/shared | |
parent | aedefd551da5e50f89eeaf74a7d6e1a76760ec7b (diff) |
kernel: turn the NULLFS into an always present special handle
preparing for HANDLE_PROCFS
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/include/camellia/flags.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/shared/include/camellia/flags.h b/src/shared/include/camellia/flags.h index b7cc42d..632ac3e 100644 --- a/src/shared/include/camellia/flags.h +++ b/src/shared/include/camellia/flags.h @@ -27,3 +27,7 @@ * The idea is that if all flags which allow modifying the filesystem state require * OPEN_WRITE to be set, filesystem handlers could just check for the OPEN_WRITE flag. */ #define OPEN_CREATE 4 + + +/* special handles */ +#define HANDLE_NULLFS -2 |