Browse Source

Kernel: Add ESTALE errno code (stale network file handle)

Andreas Kling 3 years ago
parent
commit
20d21fad7b
1 changed files with 1 additions and 0 deletions
  1. 1 0
      Kernel/API/POSIX/errno.h

+ 1 - 0
Kernel/API/POSIX/errno.h

@@ -89,6 +89,7 @@
     E(ENOTRECOVERABLE, "State not recoverable")                       \
     E(ECANCELED, "Operation cancelled")                               \
     E(EPROMISEVIOLATION, "The process has a promise violation")       \
+    E(ESTALE, "Stale network file handle")                            \
     E(EMAXERRNO, "The highest errno +1 :^)")
 
 enum ErrnoCode {