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 2006 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 #pragma ident "%Z%%M% %I% %E% SMI"
30 * This file is a sed script which is first preprocessed by cpp or cc -E to
31 * define a set of sed directives which replace #define tokens with their
32 * values. After preprocessing, the sed script is run over procfs.d.in to
33 * replace the #define tokens listed below to create the finished procfs.d.
34 * Refer to the rules in libdtrace/Makefile.com for more information.
37 #include <sys/model.h>
38 #include <sys/thread.h>
40 #include <sys/procfs.h>
41 #include <sys/sobject.h>
42 #include <sys/siginfo.h>
44 #define SED_REPLACE(x) s/#x/x/g
46 SED_REPLACE(DATAMODEL_ILP32)
47 SED_REPLACE(DATAMODEL_LP64)
49 SED_REPLACE(TP_DAEMON)
51 SED_REPLACE(TP_PRVSTOP)
52 SED_REPLACE(TS_PSTART)
56 SED_REPLACE(TS_ONPROC)
58 SED_REPLACE(TS_STOPPED)
61 SED_REPLACE(P_PR_FORK)
62 SED_REPLACE(P_PR_RUNLCL)
63 SED_REPLACE(P_PR_KILLCL)
64 SED_REPLACE(P_PR_ASYNC)
65 SED_REPLACE(P_PR_BPTADJ)
66 SED_REPLACE(P_PR_PTRACE)
81 SED_REPLACE(CLDNOSIGCHLD)
82 SED_REPLACE(CLDWAITPID)
84 SED_REPLACE(PR_STOPPED)
88 SED_REPLACE(PR_ASLEEP)
89 SED_REPLACE(PR_PCINVAL)
92 SED_REPLACE(PR_DETACH)
93 SED_REPLACE(PR_DAEMON)
96 SED_REPLACE(PR_VFORKP)
97 SED_REPLACE(PR_ORPHAN)
98 SED_REPLACE(PR_NOSIGCHLD)
99 SED_REPLACE(PR_WAITPID)
103 SED_REPLACE(PR_ASYNC)
104 SED_REPLACE(PR_MSACCT)
105 SED_REPLACE(PR_BPTADJ)
106 SED_REPLACE(PR_PTRACE)
107 SED_REPLACE(PR_MSFORK)
109 SED_REPLACE(PR_MODEL_ILP32)
110 SED_REPLACE(PR_MODEL_LP64)
112 SED_REPLACE(SOBJ_NONE)
113 SED_REPLACE(SOBJ_MUTEX)
114 SED_REPLACE(SOBJ_RWLOCK)
116 SED_REPLACE(SOBJ_SEMA)
117 SED_REPLACE(SOBJ_USER)
118 SED_REPLACE(SOBJ_USER_PI)
119 SED_REPLACE(SOBJ_SHUTTLE)
123 SED_REPLACE(SI_QUEUE)
124 SED_REPLACE(SI_TIMER)
125 SED_REPLACE(SI_ASYNCIO)
126 SED_REPLACE(SI_MESGQ)
128 SED_REPLACE(ILL_ILLOPC)
129 SED_REPLACE(ILL_ILLOPN)
130 SED_REPLACE(ILL_ILLOPN)
131 SED_REPLACE(ILL_ILLADR)
132 SED_REPLACE(ILL_ILLTRP)
133 SED_REPLACE(ILL_PRVOPC)
134 SED_REPLACE(ILL_PRVREG)
135 SED_REPLACE(ILL_COPROC)
136 SED_REPLACE(ILL_BADSTK)
137 SED_REPLACE(FPE_INTDIV)
138 SED_REPLACE(FPE_INTOVF)
139 SED_REPLACE(FPE_FLTDIV)
140 SED_REPLACE(FPE_FLTOVF)
141 SED_REPLACE(FPE_FLTUND)
142 SED_REPLACE(FPE_FLTRES)
143 SED_REPLACE(FPE_FLTINV)
144 SED_REPLACE(FPE_FLTSUB)
145 SED_REPLACE(SEGV_MAPERR)
146 SED_REPLACE(SEGV_ACCERR)
147 SED_REPLACE(BUS_ADRALN)
148 SED_REPLACE(BUS_ADRERR)
149 SED_REPLACE(BUS_OBJERR)
150 SED_REPLACE(TRAP_BRKPT)
151 SED_REPLACE(TRAP_TRACE)
152 SED_REPLACE(CLD_EXITED)
153 SED_REPLACE(CLD_KILLED)
154 SED_REPLACE(CLD_DUMPED)
155 SED_REPLACE(CLD_TRAPPED)
156 SED_REPLACE(CLD_STOPPED)
157 SED_REPLACE(CLD_CONTINUED)
159 SED_REPLACE(POLL_OUT)
160 SED_REPLACE(POLL_MSG)
161 SED_REPLACE(POLL_ERR)
162 SED_REPLACE(POLL_PRI)
163 SED_REPLACE(POLL_HUP)