diff options
author | jb <jb@FreeBSD.org> | 2008-04-25 09:07:28 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 2008-04-25 09:07:28 +0000 |
commit | ce71c4333f4e7b75db9902ddea203b1083ad4561 (patch) | |
tree | 759de4e92b645ce6ce4bba19feb1e8ab20798cfc /cddl/contrib/opensolaris/tools/ctf/common/ctf_headers.h | |
parent | e01c5b125247b0d4bd1f054886d3956ae4bb63cf (diff) | |
download | FreeBSD-src-ce71c4333f4e7b75db9902ddea203b1083ad4561.zip FreeBSD-src-ce71c4333f4e7b75db9902ddea203b1083ad4561.tar.gz |
Vendor import of the CTF (Compact C Type Format) code used by DTrace
from OpenSolaris.
Diffstat (limited to 'cddl/contrib/opensolaris/tools/ctf/common/ctf_headers.h')
-rw-r--r-- | cddl/contrib/opensolaris/tools/ctf/common/ctf_headers.h | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/cddl/contrib/opensolaris/tools/ctf/common/ctf_headers.h b/cddl/contrib/opensolaris/tools/ctf/common/ctf_headers.h new file mode 100644 index 0000000..b00b8fd --- /dev/null +++ b/cddl/contrib/opensolaris/tools/ctf/common/ctf_headers.h @@ -0,0 +1,72 @@ +/* + * CDDL HEADER START + * + * The contents of this file are subject to the terms of the + * Common Development and Distribution License, Version 1.0 only + * (the "License"). You may not use this file except in compliance + * with the License. + * + * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE + * or http://www.opensolaris.org/os/licensing. + * See the License for the specific language governing permissions + * and limitations under the License. + * + * When distributing Covered Code, include this CDDL HEADER in each + * file and include the License file at usr/src/OPENSOLARIS.LICENSE. + * If applicable, add the following below this CDDL HEADER, with the + * fields enclosed by brackets "[]" replaced with your own identifying + * information: Portions Copyright [yyyy] [name of copyright owner] + * + * CDDL HEADER END + */ +/* + * Copyright 2003 Sun Microsystems, Inc. All rights reserved. + * Use is subject to license terms. + */ + +#ifndef _CTF_HEADERS_H +#define _CTF_HEADERS_H + +#pragma ident "%Z%%M% %I% %E% SMI" + +/* + * Because the ON tools are executed on the system where they are built, + * the tools need to include the headers installed on the build system, + * rather than those in the ON source tree. However, some of the headers + * required by the tools are part of the ON source tree, but not delivered + * as part of Solaris. These include the following: + * + * $(SRC)/lib/libctf/common/libctf.h + * $(SRC)/uts/common/sys/ctf_api.h + * $(SRC)/uts/common/sys/ctf.h + * + * These headers get installed in the proto area in the build environment + * under $(ROOT)/usr/include and $(ROOT)/usr/include/sys. Though these + * headers are not part of the release, in releases including and prior to + * Solaris 9, they did get installed on the build system via bfu. Therefore, + * we can not simply force the order of inclusion with -I/usr/include first + * in Makefile.ctf because we might actually get downlevel versions of the + * ctf headers. Depending on the order of the -I includes, we can also have + * a problem with mismatched headers when building the ctf tools with some + * headers getting pulled in from /usr/include and others from + * $(SRC)/uts/common/sys. + * + * To address the problem, we have done two things: + * 1) Created this header with a specific order of inclusion for the + * ctf headers. Because the <libctf.h> header includes <sys/ctf_api.h> + * which in turn includes <sys/ctf.h> we need to include these in + * reverse order to guarantee that we get the correct versions of + * the headers. + * 2) In $(SRC)/tools/ctf/Makefile.ctf, we order the -I includes such + * that we first search the directories where the ctf headers + * live, followed by /usr/include, followed by $(SRC)/uts/common. + * This last -I include is needed in order to prevent a build failure + * when <sys/ctf_api.h> is included via a nested #include rather than + * an explicit path #include. + */ + +#include <uts/common/sys/ctf.h> +#include <uts/common/sys/ctf_api.h> +#include <lib/libctf/common/libctf.h> + +#endif /* _CTF_HEADERS_H */ |