1 /* 2 Copyright (C) 2001, 2004, 2005 Axis Communications AB. 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 9 1. Redistributions of source code must retain the above copyright 10 notice, this list of conditions and the following disclaimer. 11 12 2. Neither the name of Axis Communications nor the names of its 13 contributors may be used to endorse or promote products derived 14 from this software without specific prior written permission. 15 16 THIS SOFTWARE IS PROVIDED BY AXIS COMMUNICATIONS AND ITS CONTRIBUTORS 17 AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 18 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 19 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL AXIS 20 COMMUNICATIONS OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 21 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 22 INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 23 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 25 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 26 IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 27 POSSIBILITY OF SUCH DAMAGE. 28 */ 29 /* This file is to be kept in sync with newlib/libc/include/sys/errno.h 30 on which it is based, except values used or returned by syscalls must 31 be those of the Linux/CRIS kernel. */ 32 33 /* errno is not a global variable, because that would make using it 34 non-reentrant. Instead, its address is returned by the function 35 __errno. */ 36 37 #ifndef _SYS_ERRNO_H_ 38 #ifdef __cplusplus 39 extern "C" { 40 #endif 41 #define _SYS_ERRNO_H_ 42 43 #include <sys/reent.h> 44 45 #ifndef _REENT_ONLY 46 #define errno (*__errno()) 47 extern int *__errno (void); 48 #endif 49 50 /* Please don't use these variables directly. 51 Use strerror instead. */ 52 extern const char * const _sys_errlist[]; 53 extern int _sys_nerr; 54 55 #define __errno_r(ptr) _REENT_ERRNO(ptr) 56 57 /* Adjusted to the linux asm/errno.h */ 58 #define EPERM 1 /* Operation not permitted */ 59 #define ENOENT 2 /* No such file or directory */ 60 #define ESRCH 3 /* No such process */ 61 #define EINTR 4 /* Interrupted system call */ 62 #define EIO 5 /* I/O error */ 63 #define ENXIO 6 /* No such device or address */ 64 #define E2BIG 7 /* Arg list too long */ 65 #define ENOEXEC 8 /* Exec format error */ 66 #define EBADF 9 /* Bad file number */ 67 #define ECHILD 10 /* No child processes */ 68 #define EAGAIN 11 /* Try again */ 69 #define ENOMEM 12 /* Out of memory */ 70 #define EACCES 13 /* Permission denied */ 71 #define EFAULT 14 /* Bad address */ 72 #define ENOTBLK 15 /* Block device required */ 73 #define EBUSY 16 /* Device or resource busy */ 74 #define EEXIST 17 /* File exists */ 75 #define EXDEV 18 /* Cross-device link */ 76 #define ENODEV 19 /* No such device */ 77 #define ENOTDIR 20 /* Not a directory */ 78 #define EISDIR 21 /* Is a directory */ 79 #define EINVAL 22 /* Invalid argument */ 80 #define ENFILE 23 /* File table overflow */ 81 #define EMFILE 24 /* Too many open files */ 82 #define ENOTTY 25 /* Not a typewriter */ 83 #define ETXTBSY 26 /* Text file busy */ 84 #define EFBIG 27 /* File too large */ 85 #define ENOSPC 28 /* No space left on device */ 86 #define ESPIPE 29 /* Illegal seek */ 87 #define EROFS 30 /* Read-only file system */ 88 #define EMLINK 31 /* Too many links */ 89 #define EPIPE 32 /* Broken pipe */ 90 #define EDOM 33 /* Math argument out of domain of func */ 91 #define ERANGE 34 /* Math result not representable */ 92 #define EDEADLK 35 /* Resource deadlock would occur */ 93 #define ENAMETOOLONG 36 /* File name too long */ 94 #define ENOLCK 37 /* No record locks available */ 95 #define ENOSYS 38 /* Function not implemented */ 96 #define ENOTEMPTY 39 /* Directory not empty */ 97 #define ELOOP 40 /* Too many symbolic links encountered */ 98 #define EWOULDBLOCK EAGAIN /* Operation would block */ 99 #define ENOMSG 42 /* No message of desired type */ 100 #define EIDRM 43 /* Identifier removed */ 101 #define ECHRNG 44 /* Channel number out of range */ 102 #define EL2NSYNC 45 /* Level 2 not synchronized */ 103 #define EL3HLT 46 /* Level 3 halted */ 104 #define EL3RST 47 /* Level 3 reset */ 105 #define ELNRNG 48 /* Link number out of range */ 106 #define EUNATCH 49 /* Protocol driver not attached */ 107 #define ENOCSI 50 /* No CSI structure available */ 108 #define EL2HLT 51 /* Level 2 halted */ 109 #define EBADE 52 /* Invalid exchange */ 110 #define EBADR 53 /* Invalid request descriptor */ 111 #define EXFULL 54 /* Exchange full */ 112 #define ENOANO 55 /* No anode */ 113 #define EBADRQC 56 /* Invalid request code */ 114 #define EBADSLT 57 /* Invalid slot */ 115 116 #define EDEADLOCK EDEADLK 117 118 #define EBFONT 59 /* Bad font file format */ 119 /* This is only used internally in newlib; not returned by the kernel. 120 EBFONT seems the closest match for a "bad file format" error. */ 121 #define EFTYPE EBFONT /* Inappropriate file type or format */ 122 #define ENOSTR 60 /* Device not a stream */ 123 #define ENODATA 61 /* No data available */ 124 #define ETIME 62 /* Timer expired */ 125 #define ENOSR 63 /* Out of streams resources */ 126 #define ENONET 64 /* Machine is not on the network */ 127 #define ENOPKG 65 /* Package not installed */ 128 #define EREMOTE 66 /* Object is remote */ 129 #define ENOLINK 67 /* Link has been severed */ 130 #define EADV 68 /* Advertise error */ 131 #define ESRMNT 69 /* Srmount error */ 132 #define ECOMM 70 /* Communication error on send */ 133 #define EPROTO 71 /* Protocol error */ 134 #define EMULTIHOP 72 /* Multihop attempted */ 135 #define EDOTDOT 73 /* RFS specific error */ 136 #define EBADMSG 74 /* Not a data message */ 137 #define EOVERFLOW 75 /* Value too large for defined data type */ 138 #define ENOTUNIQ 76 /* Name not unique on network */ 139 #define EBADFD 77 /* File descriptor in bad state */ 140 #define EREMCHG 78 /* Remote address changed */ 141 #define ELIBACC 79 /* Can not access a needed shared library */ 142 #define ELIBBAD 80 /* Accessing a corrupted shared library */ 143 #define ELIBSCN 81 /* .lib section in a.out corrupted */ 144 #define ELIBMAX 82 /* Attempting to link in too many shared libraries */ 145 #define ELIBEXEC 83 /* Cannot exec a shared library directly */ 146 #define EILSEQ 84 /* Illegal byte sequence */ 147 #define ERESTART 85 /* Interrupted system call should be restarted */ 148 #define ESTRPIPE 86 /* Streams pipe error */ 149 #define EUSERS 87 /* Too many users */ 150 #define ENOTSOCK 88 /* Socket operation on non-socket */ 151 #define EDESTADDRREQ 89 /* Destination address required */ 152 #define EMSGSIZE 90 /* Message too long */ 153 #define EPROTOTYPE 91 /* Protocol wrong type for socket */ 154 #define ENOPROTOOPT 92 /* Protocol not available */ 155 #define EPROTONOSUPPORT 93 /* Protocol not supported */ 156 #define ESOCKTNOSUPPORT 94 /* Socket type not supported */ 157 #define EOPNOTSUPP 95 /* Operation not supported on transport endpoint */ 158 #define EPFNOSUPPORT 96 /* Protocol family not supported */ 159 #define EAFNOSUPPORT 97 /* Address family not supported by protocol */ 160 #define EADDRINUSE 98 /* Address already in use */ 161 #define EADDRNOTAVAIL 99 /* Cannot assign requested address */ 162 #define ENETDOWN 100 /* Network is down */ 163 #define ENETUNREACH 101 /* Network is unreachable */ 164 #define ENETRESET 102 /* Network dropped connection because of reset */ 165 #define ECONNABORTED 103 /* Software caused connection abort */ 166 #define ECONNRESET 104 /* Connection reset by peer */ 167 #define ENOBUFS 105 /* No buffer space available */ 168 #define EISCONN 106 /* Transport endpoint is already connected */ 169 #define ENOTCONN 107 /* Transport endpoint is not connected */ 170 #define ESHUTDOWN 108 /* Cannot send after transport endpoint shutdown */ 171 #define ETOOMANYREFS 109 /* Too many references: cannot splice */ 172 #define ETIMEDOUT 110 /* Connection timed out */ 173 #define ECONNREFUSED 111 /* Connection refused */ 174 #define EHOSTDOWN 112 /* Host is down */ 175 #define EHOSTUNREACH 113 /* No route to host */ 176 #define EALREADY 114 /* Operation already in progress */ 177 #define EINPROGRESS 115 /* Operation now in progress */ 178 #define ESTALE 116 /* Stale NFS file handle */ 179 #define EUCLEAN 117 /* Structure needs cleaning */ 180 #define ENOTNAM 118 /* Not a XENIX named type file */ 181 #define ENAVAIL 119 /* No XENIX semaphores available */ 182 #define EISNAM 120 /* Is a named type file */ 183 #define EREMOTEIO 121 /* Remote I/O error */ 184 #define EDQUOT 122 /* Quota exceeded */ 185 186 #define ENOMEDIUM 123 /* No medium found */ 187 #define EMEDIUMTYPE 124 /* Wrong medium type */ 188 #define ECANCELED 125 /* Operation Canceled */ 189 #define ENOKEY 126 /* Required key not available */ 190 #define EKEYEXPIRED 127 /* Key has expired */ 191 #define EKEYREVOKED 128 /* Key has been revoked */ 192 #define EKEYREJECTED 129 /* Key was rejected by service */ 193 194 #define EOWNERDEAD 130 /* Owner died */ 195 #define ENOTRECOVERABLE 131 /* State not recoverable */ 196 197 /* Widely known to be a synonym in Linux. */ 198 #define ENOTSUP EOPNOTSUPP 199 200 #define __ELASTERROR 2000 /* Users can add values starting here */ 201 202 #ifdef __cplusplus 203 } 204 #endif 205 #endif /* _SYS_ERRNO_H */ 206