diff options
author | dzwdz | 2023-01-11 19:35:44 +0100 |
---|---|---|
committer | dzwdz | 2023-01-11 19:37:46 +0100 |
commit | ec81fa16d837f430add92b4d2ee4bd3727ca6c6d (patch) | |
tree | 43c91abe8d6a76fcec006fe67c1b585573d3662f /src/shared/include | |
parent | c178ab5d5ca328d5b0072d54e3dc66d1b198df7b (diff) |
kernel: return EPIPE when fs_waiting on a dead filesystem
Diffstat (limited to 'src/shared/include')
-rw-r--r-- | src/shared/include/camellia/errno.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shared/include/camellia/errno.h b/src/shared/include/camellia/errno.h index c572f88..002980c 100644 --- a/src/shared/include/camellia/errno.h +++ b/src/shared/include/camellia/errno.h @@ -14,6 +14,7 @@ #define EACCES 10 #define EMFILE 11 /* all file descriptors taken */ #define ECONNRESET 12 +#define EPIPE 13 #define EISDIR 200 #define ENAMETOOLONG 201 |