1*0Sstevel@tonic-gate/* 2*0Sstevel@tonic-gate * CDDL HEADER START 3*0Sstevel@tonic-gate * 4*0Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*0Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only 6*0Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance 7*0Sstevel@tonic-gate * with the License. 8*0Sstevel@tonic-gate * 9*0Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10*0Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 11*0Sstevel@tonic-gate * See the License for the specific language governing permissions 12*0Sstevel@tonic-gate * and limitations under the License. 13*0Sstevel@tonic-gate * 14*0Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 15*0Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16*0Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 17*0Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 18*0Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 19*0Sstevel@tonic-gate * 20*0Sstevel@tonic-gate * CDDL HEADER END 21*0Sstevel@tonic-gate */ 22*0Sstevel@tonic-gate#ident "%Z%%M% %I% %E% SMI" /* SVr4.0 1.10 */ 23*0Sstevel@tonic-gate 24*0Sstevel@tonic-gate/* 25*0Sstevel@tonic-gate * WARNING! 26*0Sstevel@tonic-gate * Do NOT add entries to this list such that it grows the list 27*0Sstevel@tonic-gate * beyond the last entry: 28*0Sstevel@tonic-gate * 151 Stale NFS file handle 29*0Sstevel@tonic-gate * Growing this list may damage programs because this array is 30*0Sstevel@tonic-gate * copied into a reserved array at runtime. See bug 4097669. 31*0Sstevel@tonic-gate * 32*0Sstevel@tonic-gate * If you need to add an entry please use one of the empty 33*0Sstevel@tonic-gate * slots. 34*0Sstevel@tonic-gate * The arrays _sys_errs[], accessible via perror(3C) and strerror(3C) 35*0Sstevel@tonic-gate * interfaces, and sys_errlist[] are created from this list. 36*0Sstevel@tonic-gate * It is the direct referencing of sys_errlist[] that is the problem. 37*0Sstevel@tonic-gate * Your code should only use perror() or strerror(). 38*0Sstevel@tonic-gate */ 39*0Sstevel@tonic-gate 40*0Sstevel@tonic-gate1 Not owner 41*0Sstevel@tonic-gate2 No such file or directory 42*0Sstevel@tonic-gate3 No such process 43*0Sstevel@tonic-gate4 Interrupted system call 44*0Sstevel@tonic-gate5 I/O error 45*0Sstevel@tonic-gate6 No such device or address 46*0Sstevel@tonic-gate7 Arg list too long 47*0Sstevel@tonic-gate8 Exec format error 48*0Sstevel@tonic-gate9 Bad file number 49*0Sstevel@tonic-gate10 No child processes 50*0Sstevel@tonic-gate11 Resource temporarily unavailable 51*0Sstevel@tonic-gate12 Not enough space 52*0Sstevel@tonic-gate13 Permission denied 53*0Sstevel@tonic-gate14 Bad address 54*0Sstevel@tonic-gate15 Block device required 55*0Sstevel@tonic-gate16 Device busy 56*0Sstevel@tonic-gate17 File exists 57*0Sstevel@tonic-gate18 Cross-device link 58*0Sstevel@tonic-gate19 No such device 59*0Sstevel@tonic-gate20 Not a directory 60*0Sstevel@tonic-gate21 Is a directory 61*0Sstevel@tonic-gate22 Invalid argument 62*0Sstevel@tonic-gate23 File table overflow 63*0Sstevel@tonic-gate24 Too many open files 64*0Sstevel@tonic-gate25 Inappropriate ioctl for device 65*0Sstevel@tonic-gate26 Text file busy 66*0Sstevel@tonic-gate27 File too large 67*0Sstevel@tonic-gate28 No space left on device 68*0Sstevel@tonic-gate29 Illegal seek 69*0Sstevel@tonic-gate30 Read-only file system 70*0Sstevel@tonic-gate31 Too many links 71*0Sstevel@tonic-gate32 Broken pipe 72*0Sstevel@tonic-gate33 Argument out of domain 73*0Sstevel@tonic-gate34 Result too large 74*0Sstevel@tonic-gate35 No message of desired type 75*0Sstevel@tonic-gate36 Identifier removed 76*0Sstevel@tonic-gate37 Channel number out of range 77*0Sstevel@tonic-gate38 Level 2 not synchronized 78*0Sstevel@tonic-gate39 Level 3 halted 79*0Sstevel@tonic-gate40 Level 3 reset 80*0Sstevel@tonic-gate41 Link number out of range 81*0Sstevel@tonic-gate42 Protocol driver not attached 82*0Sstevel@tonic-gate43 No CSI structure available 83*0Sstevel@tonic-gate44 Level 2 halted 84*0Sstevel@tonic-gate45 Deadlock situation detected/avoided 85*0Sstevel@tonic-gate46 No record locks available 86*0Sstevel@tonic-gate47 Operation canceled 87*0Sstevel@tonic-gate48 Operation not supported 88*0Sstevel@tonic-gate49 Disc quota exceeded 89*0Sstevel@tonic-gate50 Bad exchange descriptor 90*0Sstevel@tonic-gate51 Bad request descriptor 91*0Sstevel@tonic-gate52 Message tables full 92*0Sstevel@tonic-gate53 Anode table overflow 93*0Sstevel@tonic-gate54 Bad request code 94*0Sstevel@tonic-gate55 Invalid slot 95*0Sstevel@tonic-gate56 File locking deadlock 96*0Sstevel@tonic-gate57 Bad font file format 97*0Sstevel@tonic-gate58 Owner of the lock died 98*0Sstevel@tonic-gate59 Lock is not recoverable 99*0Sstevel@tonic-gate60 Not a stream device 100*0Sstevel@tonic-gate61 No data available 101*0Sstevel@tonic-gate62 Timer expired 102*0Sstevel@tonic-gate63 Out of stream resources 103*0Sstevel@tonic-gate64 Machine is not on the network 104*0Sstevel@tonic-gate65 Package not installed 105*0Sstevel@tonic-gate66 Object is remote 106*0Sstevel@tonic-gate67 Link has been severed 107*0Sstevel@tonic-gate68 Advertise error 108*0Sstevel@tonic-gate69 Srmount error 109*0Sstevel@tonic-gate70 Communication error on send 110*0Sstevel@tonic-gate71 Protocol error 111*0Sstevel@tonic-gate72 Locked lock was unmapped 112*0Sstevel@tonic-gate73 Facility is not active 113*0Sstevel@tonic-gate74 Multihop attempted 114*0Sstevel@tonic-gate77 Not a data message 115*0Sstevel@tonic-gate78 File name too long 116*0Sstevel@tonic-gate79 Value too large for defined data type 117*0Sstevel@tonic-gate80 Name not unique on network 118*0Sstevel@tonic-gate81 File descriptor in bad state 119*0Sstevel@tonic-gate82 Remote address changed 120*0Sstevel@tonic-gate83 Can not access a needed shared library 121*0Sstevel@tonic-gate84 Accessing a corrupted shared library 122*0Sstevel@tonic-gate85 .lib section in a.out corrupted 123*0Sstevel@tonic-gate86 Attempting to link in more shared libraries than system limit 124*0Sstevel@tonic-gate87 Can not exec a shared library directly 125*0Sstevel@tonic-gate88 Illegal byte sequence 126*0Sstevel@tonic-gate89 Operation not applicable 127*0Sstevel@tonic-gate90 Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS 128*0Sstevel@tonic-gate93 Directory not empty 129*0Sstevel@tonic-gate94 Too many users 130*0Sstevel@tonic-gate95 Socket operation on non-socket 131*0Sstevel@tonic-gate96 Destination address required 132*0Sstevel@tonic-gate97 Message too long 133*0Sstevel@tonic-gate98 Protocol wrong type for socket 134*0Sstevel@tonic-gate99 Option not supported by protocol 135*0Sstevel@tonic-gate120 Protocol not supported 136*0Sstevel@tonic-gate121 Socket type not supported 137*0Sstevel@tonic-gate122 Operation not supported on transport endpoint 138*0Sstevel@tonic-gate123 Protocol family not supported 139*0Sstevel@tonic-gate124 Address family not supported by protocol family 140*0Sstevel@tonic-gate125 Address already in use 141*0Sstevel@tonic-gate126 Cannot assign requested address 142*0Sstevel@tonic-gate127 Network is down 143*0Sstevel@tonic-gate128 Network is unreachable 144*0Sstevel@tonic-gate129 Network dropped connection because of reset 145*0Sstevel@tonic-gate130 Software caused connection abort 146*0Sstevel@tonic-gate131 Connection reset by peer 147*0Sstevel@tonic-gate132 No buffer space available 148*0Sstevel@tonic-gate133 Transport endpoint is already connected 149*0Sstevel@tonic-gate134 Transport endpoint is not connected 150*0Sstevel@tonic-gate135 Structure needs cleaning 151*0Sstevel@tonic-gate137 Not a name file 152*0Sstevel@tonic-gate138 Not available 153*0Sstevel@tonic-gate139 Is a name file 154*0Sstevel@tonic-gate140 Remote I/O error 155*0Sstevel@tonic-gate141 Reserved for future use 156*0Sstevel@tonic-gate142 157*0Sstevel@tonic-gate143 Cannot send after socket shutdown 158*0Sstevel@tonic-gate144 Too many references: cannot splice 159*0Sstevel@tonic-gate145 Connection timed out 160*0Sstevel@tonic-gate146 Connection refused 161*0Sstevel@tonic-gate147 Host is down 162*0Sstevel@tonic-gate148 No route to host 163*0Sstevel@tonic-gate149 Operation already in progress 164*0Sstevel@tonic-gate150 Operation now in progress 165*0Sstevel@tonic-gate151 Stale NFS file handle 166