Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.3 KiB

  1. /***
  2. *errno.h - system wide error numbers (set by system calls)
  3. *
  4. * Copyright (c) 1985-1988, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. * This file defines the system-wide error numbers (set by
  8. * system calls). Conforms to the XENIX standard. Extended
  9. * for compatibility with Uniforum standard.
  10. * [System V]
  11. *
  12. *******************************************************************************/
  13. #define EZERO 0
  14. #define EPERM 1
  15. #define ENOENT 2
  16. #define ESRCH 3
  17. #define EINTR 4
  18. #define EIO 5
  19. #define ENXIO 6
  20. #define E2BIG 7
  21. #define ENOEXEC 8
  22. #define EBADF 9
  23. #define ECHILD 10
  24. #define EAGAIN 11
  25. #define ENOMEM 12
  26. #define EACCES 13
  27. #define EFAULT 14
  28. #define ENOTBLK 15
  29. #define EBUSY 16
  30. #define EEXIST 17
  31. #define EXDEV 18
  32. #define ENODEV 19
  33. #define ENOTDIR 20
  34. #define EISDIR 21
  35. #define EINVAL 22
  36. #define ENFILE 23
  37. #define EMFILE 24
  38. #define ENOTTY 25
  39. #define ETXTBSY 26
  40. #define EFBIG 27
  41. #define ENOSPC 28
  42. #define ESPIPE 29
  43. #define EROFS 30
  44. #define EMLINK 31
  45. #define EPIPE 32
  46. #define EDOM 33
  47. #define ERANGE 34
  48. #define EUCLEAN 35
  49. #define EDEADLOCK 36