xref: /onnv-gate/usr/src/head/storclass.h (revision 0:68f95e015346)
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 /*	Copyright (c) 1988 AT&T	*/
23*0Sstevel@tonic-gate /*	  All Rights Reserved  	*/
24*0Sstevel@tonic-gate 
25*0Sstevel@tonic-gate 
26*0Sstevel@tonic-gate #ifndef	_STORCLASS_H
27*0Sstevel@tonic-gate #define	_STORCLASS_H
28*0Sstevel@tonic-gate 
29*0Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"	/* SVr4.0 1.6 */
30*0Sstevel@tonic-gate 
31*0Sstevel@tonic-gate #ifdef	__cplusplus
32*0Sstevel@tonic-gate extern "C" {
33*0Sstevel@tonic-gate #endif
34*0Sstevel@tonic-gate 
35*0Sstevel@tonic-gate /*
36*0Sstevel@tonic-gate  *   STORAGE CLASSES
37*0Sstevel@tonic-gate  */
38*0Sstevel@tonic-gate 
39*0Sstevel@tonic-gate #define	C_EFCN		-1	/* physical end of function */
40*0Sstevel@tonic-gate #define	C_NULL		0
41*0Sstevel@tonic-gate #define	C_AUTO		1	/* automatic variable */
42*0Sstevel@tonic-gate #define	C_EXT		2	/* external symbol */
43*0Sstevel@tonic-gate #define	C_STAT		3	/* static */
44*0Sstevel@tonic-gate #define	C_REG		4	/* register variable */
45*0Sstevel@tonic-gate #define	C_EXTDEF	5	/* external definition */
46*0Sstevel@tonic-gate #define	C_LABEL		6	/* label */
47*0Sstevel@tonic-gate #define	C_ULABEL	7	/* undefined label */
48*0Sstevel@tonic-gate #define	C_MOS		8	/* member of structure */
49*0Sstevel@tonic-gate #define	C_ARG		9	/* function argument */
50*0Sstevel@tonic-gate #define	C_STRTAG	10	/* structure tag */
51*0Sstevel@tonic-gate #define	C_MOU		11	/* member of union */
52*0Sstevel@tonic-gate #define	C_UNTAG		12	/* union tag */
53*0Sstevel@tonic-gate #define	C_TPDEF		13	/* type definition */
54*0Sstevel@tonic-gate #define	C_USTATIC	14	/* undefined static */
55*0Sstevel@tonic-gate #define	C_ENTAG		15	/* enumeration tag */
56*0Sstevel@tonic-gate #define	C_MOE		16	/* member of enumeration */
57*0Sstevel@tonic-gate #define	C_REGPARM	17	/* register parameter */
58*0Sstevel@tonic-gate #define	C_FIELD		18	/* bit field */
59*0Sstevel@tonic-gate #define	C_BLOCK		100	/* ".bb" or ".eb" */
60*0Sstevel@tonic-gate #define	C_FCN		101	/* ".bf" or ".ef" */
61*0Sstevel@tonic-gate #define	C_EOS		102	/* end of structure */
62*0Sstevel@tonic-gate #define	C_FILE		103	/* file name */
63*0Sstevel@tonic-gate 
64*0Sstevel@tonic-gate /*
65*0Sstevel@tonic-gate  * The following storage class is a "dummy" used only by STS
66*0Sstevel@tonic-gate  * for line number entries reformatted as symbol table entries
67*0Sstevel@tonic-gate  */
68*0Sstevel@tonic-gate 
69*0Sstevel@tonic-gate #define	C_LINE		104
70*0Sstevel@tonic-gate #define	C_ALIAS	105	/* duplicate tag */
71*0Sstevel@tonic-gate #define	C_HIDDEN	106	/* special storage class for external */
72*0Sstevel@tonic-gate 				/* symbols in dmert public libraries */
73*0Sstevel@tonic-gate #define	 C_SHADOW	107	/* shadow symbol */
74*0Sstevel@tonic-gate 
75*0Sstevel@tonic-gate #ifdef	__cplusplus
76*0Sstevel@tonic-gate }
77*0Sstevel@tonic-gate #endif
78*0Sstevel@tonic-gate 
79*0Sstevel@tonic-gate #endif	/* _STORCLASS_H */
80