1*fcf3ce44SJohn Forte# CDDL HEADER START 2*fcf3ce44SJohn Forte# 3*fcf3ce44SJohn Forte# The contents of this file are subject to the terms of the 4*fcf3ce44SJohn Forte# Common Development and Distribution License (the "License"). 5*fcf3ce44SJohn Forte# You may not use this file except in compliance with the License. 6*fcf3ce44SJohn Forte# 7*fcf3ce44SJohn Forte# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 8*fcf3ce44SJohn Forte# or http://www.opensolaris.org/os/licensing. 9*fcf3ce44SJohn Forte# See the License for the specific language governing permissions 10*fcf3ce44SJohn Forte# and limitations under the License. 11*fcf3ce44SJohn Forte# 12*fcf3ce44SJohn Forte# When distributing Covered Code, include this CDDL HEADER in each 13*fcf3ce44SJohn Forte# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 14*fcf3ce44SJohn Forte# If applicable, add the following below this CDDL HEADER, with the 15*fcf3ce44SJohn Forte# fields enclosed by brackets "[]" replaced with your own identifying 16*fcf3ce44SJohn Forte# information: Portions Copyright [yyyy] [name of copyright owner] 17*fcf3ce44SJohn Forte# 18*fcf3ce44SJohn Forte# CDDL HEADER END 19*fcf3ce44SJohn Forte# 20*fcf3ce44SJohn Forte# Copyright 2008 Sun Microsystems, Inc. All rights reserved. 21*fcf3ce44SJohn Forte# Use is subject to license terms. 22*fcf3ce44SJohn Forte# 23*fcf3ce44SJohn FortePERM = Not super-user 24*fcf3ce44SJohn ForteNOENT = No such file or directory 25*fcf3ce44SJohn ForteSRCH = No such process 26*fcf3ce44SJohn ForteINTR = interrupted system call 27*fcf3ce44SJohn ForteIO = I/O error 28*fcf3ce44SJohn ForteNXIO = No such device or address 29*fcf3ce44SJohn Forte2BIG = Arg list too long 30*fcf3ce44SJohn ForteNOEXEC = Exec format error 31*fcf3ce44SJohn ForteBADF = Bad file number 32*fcf3ce44SJohn ForteCHILD = No children 33*fcf3ce44SJohn ForteAGAIN = Resource temporarily unavailable 34*fcf3ce44SJohn ForteNOMEM = Not enough core 35*fcf3ce44SJohn ForteACCES = Permission denied 36*fcf3ce44SJohn ForteFAULT = Bad address 37*fcf3ce44SJohn ForteNOTBLK = Block device required 38*fcf3ce44SJohn ForteBUSY = Mount device busy 39*fcf3ce44SJohn ForteEXIST = File exists 40*fcf3ce44SJohn ForteXDEV = Cross-device link 41*fcf3ce44SJohn ForteNODEV = No such device 42*fcf3ce44SJohn ForteNOTDIR = Not a directory 43*fcf3ce44SJohn ForteISDIR = Is a directory 44*fcf3ce44SJohn ForteINVAL = Invalid argument 45*fcf3ce44SJohn ForteNFILE = File table overflow 46*fcf3ce44SJohn ForteMFILE = Too many open files 47*fcf3ce44SJohn ForteNOTTY = Inappropriate ioctl for device 48*fcf3ce44SJohn ForteTXTBSY = Text file busy 49*fcf3ce44SJohn ForteFBIG = File too large 50*fcf3ce44SJohn ForteNOSPC = No space left on device 51*fcf3ce44SJohn ForteSPIPE = Illegal seek 52*fcf3ce44SJohn ForteROFS = Read only file system 53*fcf3ce44SJohn ForteMLINK = Too many links 54*fcf3ce44SJohn FortePIPE = Broken pipe 55*fcf3ce44SJohn ForteDOM = Math arg out of domain of func 56*fcf3ce44SJohn ForteRANGE = Math result not representable 57*fcf3ce44SJohn ForteNOMSG = No message of desired type 58*fcf3ce44SJohn ForteIDRM = Identifier removed 59*fcf3ce44SJohn ForteCHRNG = Channel number out of range 60*fcf3ce44SJohn ForteL2NSYNC = Level 2 not synchronized 61*fcf3ce44SJohn ForteL3HLT = Level 3 halted 62*fcf3ce44SJohn ForteL3RST = Level 3 reset 63*fcf3ce44SJohn ForteLNRNG = Link number out of range 64*fcf3ce44SJohn ForteUNATCH = Protocol driver not attached 65*fcf3ce44SJohn ForteNOCSI = No CSI structure available 66*fcf3ce44SJohn ForteL2HLT = Level 2 halted 67*fcf3ce44SJohn ForteDEADLK = Deadlock condition. 68*fcf3ce44SJohn ForteNOLCK = No record locks available. 69*fcf3ce44SJohn ForteCANCELED = Operation canceled 70*fcf3ce44SJohn ForteNOTSUP = Operation not supported 71*fcf3ce44SJohn ForteDQUOT = Disc quota exceeded 72*fcf3ce44SJohn ForteBADE = invalid exchange 73*fcf3ce44SJohn ForteBADR = invalid request descriptor 74*fcf3ce44SJohn ForteXFULL = exchange full 75*fcf3ce44SJohn ForteNOANO = no anode 76*fcf3ce44SJohn ForteBADRQC = invalid request code 77*fcf3ce44SJohn ForteBADSLT = invalid slot 78*fcf3ce44SJohn ForteDEADLOCK = file locking deadlock error 79*fcf3ce44SJohn ForteBFONT = bad font file fmt 80*fcf3ce44SJohn ForteUNUSED58 = not defined 81*fcf3ce44SJohn ForteUNUSED59 = not defined 82*fcf3ce44SJohn ForteNOSTR = Device not a stream 83*fcf3ce44SJohn ForteNODATA = no data (for no delay io) 84*fcf3ce44SJohn ForteTIME = timer expired 85*fcf3ce44SJohn ForteNOSR = out of streams resources 86*fcf3ce44SJohn ForteNONET = Machine is not on the network 87*fcf3ce44SJohn ForteNOPKG = Package not installed 88*fcf3ce44SJohn ForteREMOTE = The object is remote 89*fcf3ce44SJohn ForteNOLINK = the link has been severed 90*fcf3ce44SJohn ForteADV = advertise error 91*fcf3ce44SJohn ForteSRMNT = srmount error 92*fcf3ce44SJohn ForteCOMM = Communication error on send 93*fcf3ce44SJohn FortePROTO = Protocol error 94*fcf3ce44SJohn ForteUNISED72 = undefined 95*fcf3ce44SJohn ForteUNISED73 = undefined 96*fcf3ce44SJohn ForteMULTIHOP = multihop attempted 97*fcf3ce44SJohn ForteUNISED75 = undefined 98*fcf3ce44SJohn ForteUNISED76 = undefined 99*fcf3ce44SJohn ForteBADMSG = trying to read unreadable message 100*fcf3ce44SJohn ForteNAMETOOLONG = path name is too long 101*fcf3ce44SJohn ForteOVERFLOW = value too large to be stored in data type 102*fcf3ce44SJohn ForteNOTUNIQ = given log. name not unique 103*fcf3ce44SJohn ForteBADFD = f.d. invalid for this operation 104*fcf3ce44SJohn ForteREMCHG = Remote address changed 105*fcf3ce44SJohn ForteLIBACC = Can't access a needed shared lib. 106*fcf3ce44SJohn ForteLIBBAD = Accessing a corrupted shared lib. 107*fcf3ce44SJohn ForteLIBSCN = .lib section in a.out corrupted. 108*fcf3ce44SJohn ForteLIBMAX = Attempting to link in too many libs. 109*fcf3ce44SJohn ForteLIBEXEC = Attempting to exec a shared library. 110*fcf3ce44SJohn ForteILSEQ = Illegal byte sequence. 111*fcf3ce44SJohn ForteNOSYS = Unsupported file system operation 112*fcf3ce44SJohn ForteLOOP = Symbolic link loop 113*fcf3ce44SJohn ForteRESTART = Restartable system call 114*fcf3ce44SJohn ForteSTRPIPE = if pipe/FIFO, don't sleep in stream head 115*fcf3ce44SJohn ForteNOTEMPTY = directory not empty 116*fcf3ce44SJohn ForteUSERS = Too many users (for UFS) 117*fcf3ce44SJohn ForteNOTSOCK = Socket operation on non-socket 118*fcf3ce44SJohn ForteDESTADDRREQ = Destination address required 119*fcf3ce44SJohn ForteMSGSIZE = Message too long 120*fcf3ce44SJohn FortePROTOTYPE = Protocol wrong type for socket 121*fcf3ce44SJohn ForteNOPROTOOPT = Protocol not available 122*fcf3ce44SJohn ForteUNUSED100 = undefined 123*fcf3ce44SJohn ForteUNUSED101 = undefined 124*fcf3ce44SJohn ForteUNUSED102 = undefined 125*fcf3ce44SJohn ForteUNUSED103 = undefined 126*fcf3ce44SJohn ForteUNUSED104 = undefined 127*fcf3ce44SJohn ForteUNUSED105 = undefined 128*fcf3ce44SJohn ForteUNUSED106 = undefined 129*fcf3ce44SJohn ForteUNUSED107 = undefined 130*fcf3ce44SJohn ForteUNUSED108 = undefined 131*fcf3ce44SJohn ForteUNUSED109 = undefined 132*fcf3ce44SJohn ForteUNUSED110 = undefined 133*fcf3ce44SJohn ForteUNUSED111 = undefined 134*fcf3ce44SJohn ForteUNUSED112 = undefined 135*fcf3ce44SJohn ForteUNUSED113 = undefined 136*fcf3ce44SJohn ForteUNUSED114 = undefined 137*fcf3ce44SJohn ForteUNUSED115 = undefined 138*fcf3ce44SJohn ForteUNUSED116 = undefined 139*fcf3ce44SJohn ForteUNUSED117 = undefined 140*fcf3ce44SJohn ForteUNUSED118 = undefined 141*fcf3ce44SJohn ForteUNUSED119 = undefined 142*fcf3ce44SJohn FortePROTONOSUPPORT = Protocol not supported 143*fcf3ce44SJohn ForteSOCKTNOSUPPORT = Socket type not supported 144*fcf3ce44SJohn ForteOPNOTSUPP = Operation not supported on socket 145*fcf3ce44SJohn FortePFNOSUPPORT = Protocol family not supported 146*fcf3ce44SJohn ForteAFNOSUPPORT = Address family not supported by protocol family 147*fcf3ce44SJohn ForteADDRINUSE = Address already in use 148*fcf3ce44SJohn ForteADDRNOTAVAIL = Can't assign requested address operational errors 149*fcf3ce44SJohn ForteNETDOWN = Network is down 150*fcf3ce44SJohn ForteNETUNREACH = Network is unreachable 151*fcf3ce44SJohn ForteNETRESET = Network dropped connection because of reset 152*fcf3ce44SJohn ForteCONNABORTED = Software caused connection abort 153*fcf3ce44SJohn ForteCONNRESET = Connection reset by peer 154*fcf3ce44SJohn ForteNOBUFS = No buffer space available 155*fcf3ce44SJohn ForteISCONN = Socket is already connected 156*fcf3ce44SJohn ForteNOTCONN = Socket is not connected 157*fcf3ce44SJohn ForteXENIX135 = XENIX 135 158*fcf3ce44SJohn ForteXENIX136 = XENIX 136 159*fcf3ce44SJohn ForteXENIX137 = XENIX 137 160*fcf3ce44SJohn ForteXENIX138 = XENIX 138 161*fcf3ce44SJohn ForteXENIX139 = XENIX 139 162*fcf3ce44SJohn ForteXENIX140 = XENIX 140 163*fcf3ce44SJohn ForteXENIX141 = XENIX 141 164*fcf3ce44SJohn ForteXENIX142 = XENIX 142 165*fcf3ce44SJohn ForteSHUTDOWN = Can't send after socket shutdown 166*fcf3ce44SJohn ForteTOOMANYREFS = Too many references: can't splice 167*fcf3ce44SJohn ForteTIMEDOUT = Connection timed out 168*fcf3ce44SJohn ForteCONNREFUSED = Connection refused 169*fcf3ce44SJohn ForteHOSTDOWN = Host is down 170*fcf3ce44SJohn ForteHOSTUNREACH = No route to host 171*fcf3ce44SJohn ForteALREADY = operation already in progress 172*fcf3ce44SJohn ForteINPROGRESS = operation now in progress 173*fcf3ce44SJohn ForteSTALE = Stale NFS file handle 174