tclErrno.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:4k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * tclErrno.h --
  3.  *
  4.  * This header file contains the various POSIX errno definitions that
  5.  * are used by Tcl.  This file is derived from the spec POSIX 2.4 and
  6.  * previous implementations for Berkeley UNIX.
  7.  *
  8.  * Copyright (c) 1982, 1986, 1989 Regents of the University of California.
  9.  * Copyright (c) 1996 Sun Microsystems, Inc.
  10.  *
  11.  * See the file "license.terms" for information on usage and redistribution
  12.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  13.  *
  14.  * RCS: @(#) $Id: tclErrno.h,v 1.3 2002/06/07 08:50:22 dkf Exp $
  15.  */
  16. extern int errno; /* global error number */
  17. #define EPERM 1 /* Operation not permitted */
  18. #define ENOENT 2 /* No such file or directory */
  19. #define ESRCH 3 /* No such process */
  20. #define EINTR 4 /* Interrupted system call */
  21. #define EIO 5 /* Input/output error */
  22. #define ENXIO 6 /* Device not configured */
  23. #define E2BIG 7 /* Argument list too long */
  24. #define ENOEXEC 8 /* Exec format error */
  25. #define EBADF 9 /* Bad file descriptor */
  26. #define ECHILD 10 /* No child processes */
  27. #define EDEADLK 11 /* Resource deadlock avoided */
  28. /* 11 was EAGAIN */
  29. #define ENOMEM 12 /* Cannot allocate memory */
  30. #define EACCES 13 /* Permission denied */
  31. #define EFAULT 14 /* Bad address */
  32. #define ENOTBLK 15 /* Block device required */
  33. #define EBUSY 16 /* Device busy */
  34. #define EEXIST 17 /* File exists */
  35. #define EXDEV 18 /* Cross-device link */
  36. #define ENODEV 19 /* Operation not supported by device */
  37. #define ENOTDIR 20 /* Not a directory */
  38. #define EISDIR 21 /* Is a directory */
  39. #define EINVAL 22 /* Invalid argument */
  40. #define ENFILE 23 /* Too many open files in system */
  41. #define EMFILE 24 /* Too many open files */
  42. #define ENOTTY 25 /* Inappropriate ioctl for device */
  43. #define ETXTBSY 26 /* Text file busy */
  44. #define EFBIG 27 /* File too large */
  45. #define ENOSPC 28 /* No space left on device */
  46. #define ESPIPE 29 /* Illegal seek */
  47. #define EROFS 30 /* Read-only file system */
  48. #define EMLINK 31 /* Too many links */
  49. #define EPIPE 32 /* Broken pipe */
  50. #define EDOM 33 /* Numerical argument out of domain */
  51. #define ERANGE 34 /* Result too large */
  52. #define EAGAIN 35 /* Resource temporarily unavailable */
  53. #define EWOULDBLOCK EAGAIN /* Operation would block */
  54. #define EINPROGRESS 36 /* Operation now in progress */
  55. #define EALREADY 37 /* Operation already in progress */
  56. #define ENOTSOCK 38 /* Socket operation on non-socket */
  57. #define EDESTADDRREQ 39 /* Destination address required */
  58. #define EMSGSIZE 40 /* Message too long */
  59. #define EPROTOTYPE 41 /* Protocol wrong type for socket */
  60. #define ENOPROTOOPT 42 /* Protocol not available */
  61. #define EPROTONOSUPPORT 43 /* Protocol not supported */
  62. #define ESOCKTNOSUPPORT 44 /* Socket type not supported */
  63. #define EOPNOTSUPP 45 /* Operation not supported on socket */
  64. #define EPFNOSUPPORT 46 /* Protocol family not supported */
  65. #define EAFNOSUPPORT 47 /* Address family not supported by protocol family */
  66. #define EADDRINUSE 48 /* Address already in use */
  67. #define EADDRNOTAVAIL 49 /* Can't assign requested address */
  68. #define ENETDOWN 50 /* Network is down */
  69. #define ENETUNREACH 51 /* Network is unreachable */
  70. #define ENETRESET 52 /* Network dropped connection on reset */
  71. #define ECONNABORTED 53 /* Software caused connection abort */
  72. #define ECONNRESET 54 /* Connection reset by peer */
  73. #define ENOBUFS 55 /* No buffer space available */
  74. #define EISCONN 56 /* Socket is already connected */
  75. #define ENOTCONN 57 /* Socket is not connected */
  76. #define ESHUTDOWN 58 /* Can't send after socket shutdown */
  77. #define ETOOMANYREFS 59 /* Too many references: can't splice */
  78. #define ETIMEDOUT 60 /* Connection timed out */
  79. #define ECONNREFUSED 61 /* Connection refused */
  80. #define ELOOP 62 /* Too many levels of symbolic links */
  81. #define ENAMETOOLONG 63 /* File name too long */
  82. #define EHOSTDOWN 64 /* Host is down */
  83. #define EHOSTUNREACH 65 /* No route to host */
  84. #define ENOTEMPTY 66 /* Directory not empty */
  85. #define EPROCLIM 67 /* Too many processes */
  86. #define EUSERS 68 /* Too many users */
  87. #define EDQUOT 69 /* Disc quota exceeded */
  88. #define ESTALE 70 /* Stale NFS file handle */
  89. #define EREMOTE 71 /* Too many levels of remote in path */
  90. #define EBADRPC 72 /* RPC struct is bad */
  91. #define ERPCMISMATCH 73 /* RPC version wrong */
  92. #define EPROGUNAVAIL 74 /* RPC prog. not avail */
  93. #define EPROGMISMATCH 75 /* Program version wrong */
  94. #define EPROCUNAVAIL 76 /* Bad procedure for program */
  95. #define ENOLCK 77 /* No locks available */
  96. #define ENOSYS 78 /* Function not implemented */
  97. #define EOVERFLOW 79 /* Value too large to be stored in data type */