Deleted Added
full compact
dt_open.c (178570) dt_open.c (184696)
1/*
2 * CDDL HEADER START
3 *
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.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 101 unchanged lines hidden (view full) ---

110#define DT_VERS_1_2_1 DT_VERSION_NUMBER(1, 2, 1)
111#define DT_VERS_1_2_2 DT_VERSION_NUMBER(1, 2, 2)
112#define DT_VERS_1_3 DT_VERSION_NUMBER(1, 3, 0)
113#define DT_VERS_1_4 DT_VERSION_NUMBER(1, 4, 0)
114#define DT_VERS_1_4_1 DT_VERSION_NUMBER(1, 4, 1)
115#define DT_VERS_1_5 DT_VERSION_NUMBER(1, 5, 0)
116#define DT_VERS_1_6 DT_VERSION_NUMBER(1, 6, 0)
117#define DT_VERS_1_6_1 DT_VERSION_NUMBER(1, 6, 1)
1/*
2 * CDDL HEADER START
3 *
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.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 101 unchanged lines hidden (view full) ---

110#define DT_VERS_1_2_1 DT_VERSION_NUMBER(1, 2, 1)
111#define DT_VERS_1_2_2 DT_VERSION_NUMBER(1, 2, 2)
112#define DT_VERS_1_3 DT_VERSION_NUMBER(1, 3, 0)
113#define DT_VERS_1_4 DT_VERSION_NUMBER(1, 4, 0)
114#define DT_VERS_1_4_1 DT_VERSION_NUMBER(1, 4, 1)
115#define DT_VERS_1_5 DT_VERSION_NUMBER(1, 5, 0)
116#define DT_VERS_1_6 DT_VERSION_NUMBER(1, 6, 0)
117#define DT_VERS_1_6_1 DT_VERSION_NUMBER(1, 6, 1)
118#define DT_VERS_LATEST DT_VERS_1_6_1
119#define DT_VERS_STRING "Sun D 1.6.1"
118#define DT_VERS_1_6_2 DT_VERSION_NUMBER(1, 6, 2)
119#define DT_VERS_LATEST DT_VERS_1_6_2
120#define DT_VERS_STRING "Sun D 1.6.2"
120
121const dt_version_t _dtrace_versions[] = {
122 DT_VERS_1_0, /* D API 1.0.0 (PSARC 2001/466) Solaris 10 FCS */
123 DT_VERS_1_1, /* D API 1.1.0 Solaris Express 6/05 */
124 DT_VERS_1_2, /* D API 1.2.0 Solaris 10 Update 1 */
125 DT_VERS_1_2_1, /* D API 1.2.1 Solaris Express 4/06 */
126 DT_VERS_1_2_2, /* D API 1.2.2 Solaris Express 6/06 */
127 DT_VERS_1_3, /* D API 1.3 Solaris Express 10/06 */
128 DT_VERS_1_4, /* D API 1.4 Solaris Express 2/07 */
129 DT_VERS_1_4_1, /* D API 1.4.1 Solaris Express 4/07 */
130 DT_VERS_1_5, /* D API 1.5 Solaris Express 7/07 */
131 DT_VERS_1_6, /* D API 1.6 */
132 DT_VERS_1_6_1, /* D API 1.6.1 */
121
122const dt_version_t _dtrace_versions[] = {
123 DT_VERS_1_0, /* D API 1.0.0 (PSARC 2001/466) Solaris 10 FCS */
124 DT_VERS_1_1, /* D API 1.1.0 Solaris Express 6/05 */
125 DT_VERS_1_2, /* D API 1.2.0 Solaris 10 Update 1 */
126 DT_VERS_1_2_1, /* D API 1.2.1 Solaris Express 4/06 */
127 DT_VERS_1_2_2, /* D API 1.2.2 Solaris Express 6/06 */
128 DT_VERS_1_3, /* D API 1.3 Solaris Express 10/06 */
129 DT_VERS_1_4, /* D API 1.4 Solaris Express 2/07 */
130 DT_VERS_1_4_1, /* D API 1.4.1 Solaris Express 4/07 */
131 DT_VERS_1_5, /* D API 1.5 Solaris Express 7/07 */
132 DT_VERS_1_6, /* D API 1.6 */
133 DT_VERS_1_6_1, /* D API 1.6.1 */
134 DT_VERS_1_6_2, /* D API 1.6.2 */
133 0
134};
135
136/*
137 * Global variables that are formatted on FreeBSD based on the kernel file name.
138 */
139#if !defined(sun)
140static char curthread_str[MAXPATHLEN];

--- 1503 unchanged lines hidden ---
135 0
136};
137
138/*
139 * Global variables that are formatted on FreeBSD based on the kernel file name.
140 */
141#if !defined(sun)
142static char curthread_str[MAXPATHLEN];

--- 1503 unchanged lines hidden ---