errstr.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * This file is part of the UCB release of Plan 9. It is subject to the license
  3. * terms in the LICENSE file found in the top-level directory of this
  4. * distribution and at http://akaros.cs.berkeley.edu/files/Plan9License. No
  5. * part of the UCB release of Plan 9, including this file, may be copied,
  6. * modified, propagated, or distributed except according to the terms contained
  7. * in the LICENSE file.
  8. */
  9. char Enoerror[] = "no error";
  10. char Emount[] = "inconsistent mount";
  11. char Eunmount[] = "not mounted";
  12. char Eunion[] = "not in union";
  13. char Emountrpc[] = "mount rpc error";
  14. char Eshutdown[] = "mounted device shut down";
  15. char Enocreate[] = "mounted directory forbids creation";
  16. char Enonexist[] = "file does not exist";
  17. char Eexist[] = "file already exists";
  18. char Ebadsharp[] = "unknown device in # filename";
  19. char Enotdir[] = "not a directory";
  20. char Eisdir[] = "file is a directory";
  21. char Ebadchar[] = "bad character in file name";
  22. char Efilename[] = "file name syntax";
  23. char Eperm[] = "permission denied";
  24. char Ebadusefd[] = "inappropriate use of fd";
  25. char Ebadarg[] = "bad arg in system call";
  26. char Einuse[] = "device or object already in use";
  27. char Eio[] = "i/o error";
  28. char Etoobig[] = "read or write too large";
  29. char Etoosmall[] = "read or write too small";
  30. char Enoport[] = "network port not available";
  31. char Ehungup[] = "write to hungup channel";
  32. char Ebadctl[] = "bad process or channel control request";
  33. char Enodev[] = "no free devices";
  34. char Eprocdied[] = "process exited";
  35. char Enochild[] = "no living children";
  36. char Eioload[] = "i/o error in demand load";
  37. char Enovmem[] = "virtual memory allocation failed";
  38. char Ebadfd[] = "fd out of range or not open";
  39. char Enofd[] = "no free file descriptors";
  40. char Eisstream[] = "seek on a stream";
  41. char Ebadexec[] = "exec header invalid";
  42. char Etimedout[] = "connection timed out";
  43. char Econrefused[] = "connection refused";
  44. char Econinuse[] = "connection in use";
  45. char Eintr[] = "interrupted";
  46. char Enomem[] = "kernel allocate failed";
  47. char Enoswap[] = "swap space full";
  48. char Esoverlap[] = "segments overlap";
  49. char Emouseset[] = "mouse type already set";
  50. char Eshort[] = "i/o count too small";
  51. char Egreg[] = "ken has left the building";
  52. char Ebadspec[] = "bad attach specifier";
  53. char Enoreg[] = "process has no saved registers";
  54. char Enoattach[] = "mount/attach disallowed";
  55. char Eshortstat[] = "stat buffer too small";
  56. char Ebadstat[] = "malformed stat buffer";