diff options
| author | Charles.Forsyth <devnull@localhost> | 2006-12-22 17:07:39 +0000 |
|---|---|---|
| committer | Charles.Forsyth <devnull@localhost> | 2006-12-22 17:07:39 +0000 |
| commit | 37da2899f40661e3e9631e497da8dc59b971cbd0 (patch) | |
| tree | cbc6d4680e347d906f5fa7fca73214418741df72 /emu/port/error.c | |
| parent | 54bc8ff236ac10b3eaa928fd6bcfc0cdb2ba46ae (diff) | |
20060303a
Diffstat (limited to 'emu/port/error.c')
| -rw-r--r-- | emu/port/error.c | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/emu/port/error.c b/emu/port/error.c new file mode 100644 index 00000000..ad1342fc --- /dev/null +++ b/emu/port/error.c @@ -0,0 +1,66 @@ +char Enoerror[] = "no error"; +char Emount[] = "inconsistent mount"; +char Eunmount[] = "not mounted"; +char Eunion[] = "not in union"; +char Emountrpc[] = "mount rpc error"; +char Eshutdown[] = "mounted device shut down"; +char Eowner[] = "not owner"; +char Eunknown[] = "unknown user or group id"; +char Enocreate[] = "mounted directory forbids creation"; +char Enonexist[] = "file does not exist"; +char Eexist[] = "file already exists"; +char Ebadsharp[] = "unknown device in # filename"; +char Enotdir[] = "not a directory"; +char Eisdir[] = "file is a directory"; +char Ebadchar[] = "bad character in file name"; +char Efilename[] = "file name syntax"; +char Eperm[] = "permission denied"; +char Ebadusefd[] = "inappropriate use of fd"; +char Ebadarg[] = "bad arg in system call"; +char Einuse[] = "device or object already in use"; +char Eio[] = "i/o error"; +char Etoobig[] = "read or write too large"; +char Etoosmall[] = "read or write too small"; +char Enetaddr[] = "bad network address"; +char Emsgsize[] = "message is too big for protocol"; +char Enetbusy[] = "network device is busy or allocated"; +char Enoproto[] = "network protocol not supported"; +char Enoport[] = "network port not available"; +char Enoifc[] = "bad interface or no free interface slots"; +char Enolisten[] = "not announced"; +char Ehungup[] = "i/o on hungup channel"; +char Ebadctl[] = "bad process or channel control request"; +char Enodev[] = "no free devices"; +char Enoenv[] = "no free environment resources"; +char Emuxshutdown[] = "mux server shut down"; +char Emuxbusy[] = "all mux channels busy"; +char Emuxmsg[] = "bad mux message format or mismatch"; +char Ethread[] = "thread exited"; +char Enochild[] = "no living children"; +char Eioload[] = "i/o error in demand load"; +char Enovmem[] = "out of memory: virtual memory"; +char Ebadld[] = "illegal line discipline"; +char Ebadfd[] = "fd out of range or not open"; +char Eisstream[] = "seek on a stream"; +char Ebadexec[] = "exec header invalid"; +char Etimedout[] = "connection timed out"; +char Econrefused[] = "connection refused"; +char Econinuse[] = "connection in use"; +char Enetunreach[] = "network unreachable"; +char Eintr[] = "interrupted"; +char Enomem[] = "out of memory: kernel"; +char Esfnotcached[] = "subfont not cached"; +char Esoverlap[] = "segments overlap"; +char Emouseset[] = "mouse type already set"; +char Eshort[] = "i/o count too small"; +/* char Enobitstore[] = "out of screen memory"; */ +char Egreg[] = "jim'll fix it"; +char Ebadspec[] = "bad attach specifier"; +char Estopped[] = "thread must be stopped"; +char Enoattach[] = "mount/attach disallowed"; +char Eshortstat[] = "stat buffer too small"; +char Enegoff[] = "negative i/o offset"; +char Ebadstat[] = "malformed stat buffer"; +char Ecmdargs[] = "wrong #args in control message"; +char Enofd[] = "no free file descriptors"; +char Enoctl[] = "unknown control request"; |
