mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:48:11 +00:00
Kernel: Remove EWHYTHO error code :^)
This error code was a hack for catching error handling mistakes in the kernel. It's no longer used anywhere.
This commit is contained in:
parent
065f79990e
commit
95df924e0e
3 changed files with 0 additions and 3 deletions
|
@ -51,7 +51,6 @@
|
||||||
E(EAFNOSUPPORT, "Address family not supported") \
|
E(EAFNOSUPPORT, "Address family not supported") \
|
||||||
E(ENOTSOCK, "Not a socket") \
|
E(ENOTSOCK, "Not a socket") \
|
||||||
E(EADDRINUSE, "Address in use") \
|
E(EADDRINUSE, "Address in use") \
|
||||||
E(EWHYTHO, "Failed without setting an error code (bug!)") \
|
|
||||||
E(ENOTEMPTY, "Directory not empty") \
|
E(ENOTEMPTY, "Directory not empty") \
|
||||||
E(EDOM, "Math argument out of domain") \
|
E(EDOM, "Math argument out of domain") \
|
||||||
E(ECONNREFUSED, "Connection refused") \
|
E(ECONNREFUSED, "Connection refused") \
|
||||||
|
|
|
@ -51,7 +51,6 @@
|
||||||
#define EAFNOSUPPORT EAFNOSUPPORT
|
#define EAFNOSUPPORT EAFNOSUPPORT
|
||||||
#define ENOTSOCK ENOTSOCK
|
#define ENOTSOCK ENOTSOCK
|
||||||
#define EADDRINUSE EADDRINUSE
|
#define EADDRINUSE EADDRINUSE
|
||||||
#define EWHYTHO EWHYTHO
|
|
||||||
#define ENOTEMPTY ENOTEMPTY
|
#define ENOTEMPTY ENOTEMPTY
|
||||||
#define EDOM EDOM
|
#define EDOM EDOM
|
||||||
#define ECONNREFUSED ECONNREFUSED
|
#define ECONNREFUSED ECONNREFUSED
|
||||||
|
|
|
@ -85,7 +85,6 @@ HANDLE(ENOTIMPL)
|
||||||
HANDLE(EAFNOSUPPORT)
|
HANDLE(EAFNOSUPPORT)
|
||||||
HANDLE(ENOTSOCK)
|
HANDLE(ENOTSOCK)
|
||||||
HANDLE(EADDRINUSE)
|
HANDLE(EADDRINUSE)
|
||||||
HANDLE(EWHYTHO)
|
|
||||||
HANDLE(ENOTEMPTY)
|
HANDLE(ENOTEMPTY)
|
||||||
HANDLE(EDOM)
|
HANDLE(EDOM)
|
||||||
HANDLE(ECONNREFUSED)
|
HANDLE(ECONNREFUSED)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue