errno.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:7k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 1982, 1986, 1989 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  * This product includes software developed by the University of
  16.  * California, Berkeley and its contributors.
  17.  * 4. Neither the name of the University nor the names of its contributors
  18.  *    may be used to endorse or promote products derived from this software
  19.  *    without specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31.  * SUCH DAMAGE.
  32.  *
  33.  * from: @(#)errno.h 7.13 (Berkeley) 2/19/91
  34.  * errno.h,v 1.3 1993/05/20 16:22:09 cgd Exp
  35.  */
  36. #ifndef _SYS_ERRNO_H_
  37. #define _SYS_ERRNO_H_
  38. #define EPERM 1 /* Operation not permitted */
  39. #define ENOENT 2 /* No such file or directory */
  40. #define ESRCH 3 /* No such process */
  41. #define EINTR 4 /* Interrupted system call */
  42. #define EIO 5 /* Input/output error */
  43. #define ENXIO 6 /* Device not configured */
  44. #define E2BIG 7 /* Argument list too long */
  45. #define ENOEXEC 8 /* Exec format error */
  46. #define EBADF 9 /* Bad file descriptor */
  47. #define ECHILD 10 /* No child processes */
  48. #define EAGAIN 11 /* No more processes */
  49. #define ENOMEM 12 /* Cannot allocate memory */
  50. #define EACCES 13 /* Permission denied */
  51. #define EFAULT 14 /* Bad address */
  52. /* 15    Non POSIX */
  53. /* 16    Non POSIX */
  54. #define EEXIST 17 /* File exists */
  55. #define EXDEV 18 /* Cross-device link */
  56. #define ENODEV 19 /* Operation not supported by device */
  57. #define ENOTDIR 20 /* Not a directory */
  58. #define EISDIR 21 /* Is a directory */
  59. #define EINVAL 22 /* Invalid argument */
  60. #define ENFILE 23 /* Too many open files in system */
  61. #define EMFILE 24 /* Too many open files */
  62. #define ENOTTY 25 /* Inappropriate ioctl for device */
  63. /* 26    Non POSIX */
  64. #define EFBIG 27 /* File too large */
  65. #define ENOSPC 28 /* No space left on device */
  66. #define ESPIPE 29 /* Illegal seek */
  67. #define EROFS 30 /* Read-only file system */
  68. #define EMLINK 31 /* Too many links */
  69. #define EPIPE 32 /* Broken pipe */
  70. /* math software */
  71. #define EDOM 33 /* Numerical argument out of domain */
  72. #define ERANGE 34 /* Result too large */
  73. /* 35    Non POSIX */
  74. /* 36    Non POSIX */
  75. /* 37    Non POSIX */
  76. /* 38    Non POSIX */
  77. /* 39    Non POSIX */
  78. /* 40    Non POSIX */
  79. /* 41    Non POSIX */
  80. /* 42    Non POSIX */
  81. /* 43    Non POSIX */
  82. /* 44    Non POSIX */
  83. /* 45    Non POSIX */
  84. /* 46    Non POSIX */
  85. /* 47    Non POSIX */
  86. /* 48    Non POSIX */
  87. /* 49    Non POSIX */
  88. /* 50    Non POSIX */
  89. /* 51    Non POSIX */
  90. /* 52    Non POSIX */
  91. /* 53    Non POSIX */
  92. /* 54    Non POSIX */
  93. /* 55    Non POSIX */
  94. /* 56    Non POSIX */
  95. /* 57    Non POSIX */
  96. /* 58    Non POSIX */
  97. /* 59    Non POSIX */
  98. /* 60    Non POSIX */
  99. /* 61    Non POSIX */
  100. /* 62    Non POSIX */
  101. #define ENAMETOOLONG 63 /* File name too long */
  102. /* 64    Non POSIX */
  103. /* 65    Non POSIX */
  104. #define ENOTEMPTY 66 /* Directory not empty */
  105. /* 67    Non POSIX */
  106. /* 68    Non POSIX */
  107. /* 69    Non POSIX */
  108. /* 70    Non POSIX */
  109. /* 71    Non POSIX */
  110. /* 72    Non POSIX */
  111. /* 73    Non POSIX */
  112. /* 74    Non POSIX */
  113. #define ENOLCK 75 /* No locks available */
  114. #define ENOSYS 76 /* Function not implemented */
  115. #ifndef _POSIX_SOURCE
  116. #define ENOTBLK 15 /* Block device required */
  117. #define EBUSY 16 /* Device busy */
  118. #define ETXTBSY 26 /* Text file busy */
  119. /* non-blocking and interrupt i/o */
  120. #define EWOULDBLOCK 35 /* Operation would block */
  121. #define EDEADLK EWOULDBLOCK /* Resource deadlock avoided */
  122. #define EINPROGRESS 36 /* Operation now in progress */
  123. #define EALREADY 37 /* Operation already in progress */
  124. /* ipc/network software -- argument errors */
  125. #define ENOTSOCK 38 /* Socket operation on non-socket */
  126. #define EDESTADDRREQ 39 /* Destination address required */
  127. #define EMSGSIZE 40 /* Message too long */
  128. #define EPROTOTYPE 41 /* Protocol wrong type for socket */
  129. #define ENOPROTOOPT 42 /* Protocol not available */
  130. #define EPROTONOSUPPORT 43 /* Protocol not supported */
  131. #define ESOCKTNOSUPPORT 44 /* Socket type not supported */
  132. #define EOPNOTSUPP 45 /* Operation not supported on socket */
  133. #define EPFNOSUPPORT 46 /* Protocol family not supported */
  134. #define EAFNOSUPPORT 47 /* Address family not supported by protocol family */
  135. #define EADDRINUSE 48 /* Address already in use */
  136. #define EADDRNOTAVAIL 49 /* Can't assign requested address */
  137. /* ipc/network software -- operational errors */
  138. #define ENETDOWN 50 /* Network is down */
  139. #define ENETUNREACH 51 /* Network is unreachable */
  140. #define ENETRESET 52 /* Network dropped connection on reset */
  141. #define ECONNABORTED 53 /* Software caused connection abort */
  142. #define ECONNRESET 54 /* Connection reset by peer */
  143. #define ENOBUFS 55 /* No buffer space available */
  144. #define EISCONN 56 /* Socket is already connected */
  145. #define ENOTCONN 57 /* Socket is not connected */
  146. #define ESHUTDOWN 58 /* Can't send after socket shutdown */
  147. #define ETOOMANYREFS 59 /* Too many references: can't splice */
  148. #define ETIMEDOUT 60 /* Connection timed out */
  149. #define ECONNREFUSED 61 /* Connection refused */
  150. #define ELOOP 62 /* Too many levels of symbolic links */
  151. #define EHOSTDOWN 64 /* Host is down */
  152. #define EHOSTUNREACH 65 /* No route to host */
  153. /* quotas & mush */
  154. #define EPROCLIM 67 /* Too many processes */
  155. #define EUSERS 68 /* Too many users */
  156. #define EDQUOT 69 /* Disc quota exceeded */
  157. /* Network File System */
  158. #define ESTALE 70 /* Stale NFS file handle */
  159. #define EREMOTE 71 /* Too many levels of remote in path */
  160. /* IPC errors */
  161. #define ENOMSG 72 /* RPC struct is bad */
  162. #define EIDRM 73 /* RPC version wrong */
  163. /* Alignment error of some type (i.e., cluster, page, block ...) */
  164. #define EALIGN 74 /* RPC prog. not avail */
  165. #endif /* _POSIX_SOURCE */
  166. #endif /* _SYS_ERRNO_H_ */