mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
Kernel+LibC: Add ECANCELED errno value
This is needed for clangd to compile.
This commit is contained in:
parent
dee0c004e0
commit
e37dbee017
Notes:
sideshowbarker
2024-07-17 22:00:13 +09:00
Author: https://github.com/BertalanD Commit: https://github.com/SerenityOS/serenity/commit/e37dbee0179 Pull-request: https://github.com/SerenityOS/serenity/pull/11464
@ -88,6 +88,7 @@
|
||||
E(EDIRINTOSELF, "Cannot make directory a subdirectory of itself") \
|
||||
E(EDQUOT, "Quota exceeded") \
|
||||
E(ENOTRECOVERABLE, "State not recoverable") \
|
||||
E(ECANCELED, "Operation cancelled") \
|
||||
E(EMAXERRNO, "The highest errno +1 :^)")
|
||||
|
||||
enum ErrnoCode {
|
||||
|
@ -88,6 +88,7 @@
|
||||
#define EDQUOT EDQUOT
|
||||
#define EDIRINTOSELF EDIRINTOSELF
|
||||
#define ENOTRECOVERABLE ENOTRECOVERABLE
|
||||
#define ECANCELED ECANCELED
|
||||
#define EMAXERRNO EMAXERRNO
|
||||
|
||||
#define EWOULDBLOCK EAGAIN
|
||||
|
Loading…
Reference in New Issue
Block a user