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

MySQL数据库

开发平台:

Visual C++

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