4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
28 /* All Rights Reserved */
30 #pragma ident "%Z%%M% %I% %E% SMI"
44 * TLI Interface exposes "t_nerr" and "t_errlist" which is a poor
45 * choice. XTI fixes that and only documents t_error() and t_strerror()
46 * as interface. We leave these variables here alone here. We create
47 * replica of these as a subset for use by XTI in t_strerror(). The
48 * first part of the replica is same as here.
49 * The rest of the errors are defined only in XTI.
54 * transport interface error list
59 "Incorrect address format", /* 1 */
60 "Incorrect options format", /* 2 */
61 "Illegal permissions", /* 3 */
62 "Illegal file descriptor", /* 4 */
63 "Couldn't allocate address", /* 5 */
64 "Routine will place interface out of state", /* 6 */
65 "Illegal called/calling sequence number", /* 7 */
66 "System error", /* 8 */
67 "An event requires attention", /* 9 */
68 "Illegal amount of data", /* 10 */
69 "Buffer not large enough", /* 11 */
70 "Can't send message - (blocked)", /* 12 */
71 "No message currently available", /* 13 */
72 "Disconnect message not found", /* 14 */
73 "Unitdata error message not found", /* 15 */
74 "Incorrect flags specified", /* 16 */
75 "Orderly release message not found", /* 17 */
76 "Primitive not supported by provider", /* 18 */
77 "State is in process of changing", /* 19 */
117 * N.B.: t_errlist must not expand beyond this point or binary
118 * compatibility will be broken. When necessary to accomodate
119 * more error strings, they may only be added to the list printed
120 * by t_strerror(), q.v.. Currently, t_strerror() conserves space
121 * by pointing into t_errlist[]. To expand beyond 57 errors, it
122 * will be necessary to change t_strerror() to use a different
131 static pthread_key_t t_errno_key
= PTHREAD_ONCE_KEY_NP
;
136 ret
= thr_get_storage(&t_errno_key
, sizeof (int), free
);
137 /* if thr_get_storage fails we return the address of t_errno */
138 return (ret
? ret
: &t_errno
);