dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / lib / libctf / common / libctf.h
bloba5c50270485b8c7954a45b66e6bcdae8ffe47667
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
7 * with the License.
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
20 * CDDL HEADER END
23 * Copyright 2001-2003 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 * Copyright (c) 2015, Joyent, Inc.
31 * This header file defines the interfaces available from the CTF debugger
32 * library, libctf. This library provides functions that a debugger can
33 * use to operate on data in the Compact ANSI-C Type Format (CTF). This
34 * is NOT a public interface, although it may eventually become one in
35 * the fullness of time after we gain more experience with the interfaces.
37 * In the meantime, be aware that any program linked with libctf in this
38 * release of illumos is almost guaranteed to break in the next release.
40 * In short, do not user this header file or libctf for any purpose.
43 #ifndef _LIBCTF_H
44 #define _LIBCTF_H
46 #include <sys/ctf_api.h>
47 #include <libelf.h>
49 #ifdef __cplusplus
50 extern "C" {
51 #endif
54 * This flag can be used to enable debug messages.
56 extern int _libctf_debug;
58 typedef enum ctf_diff_flag {
59 CTF_DIFF_F_IGNORE_INTNAMES = 0x01
60 } ctf_diff_flag_t;
62 typedef struct ctf_diff ctf_diff_t;
63 typedef void (*ctf_diff_type_f)(ctf_file_t *, ctf_id_t, boolean_t, ctf_file_t *,
64 ctf_id_t, void *);
65 typedef void (*ctf_diff_func_f)(ctf_file_t *, ulong_t, boolean_t, ctf_file_t *,
66 ulong_t, void *);
67 typedef void (*ctf_diff_obj_f)(ctf_file_t *, ulong_t, ctf_id_t, boolean_t,
68 ctf_file_t *, ulong_t, ctf_id_t, void *);
70 extern int ctf_diff_init(ctf_file_t *, ctf_file_t *, ctf_diff_t **);
71 extern uint_t ctf_diff_getflags(ctf_diff_t *);
72 extern int ctf_diff_setflags(ctf_diff_t *, uint_t);
73 extern int ctf_diff_types(ctf_diff_t *, ctf_diff_type_f, void *);
74 extern int ctf_diff_functions(ctf_diff_t *, ctf_diff_func_f, void *);
75 extern int ctf_diff_objects(ctf_diff_t *, ctf_diff_obj_f, void *);
76 extern void ctf_diff_fini(ctf_diff_t *);
78 #define CTF_CONVERT_F_IGNNONC 0x01
79 extern ctf_file_t *ctf_elfconvert(int, Elf *, const char *, uint_t, uint_t,
80 int *, char *, size_t);
81 extern ctf_file_t *ctf_fdconvert(int, const char *, uint_t, uint_t, int *,
82 char *, size_t);
84 typedef struct ctf_merge_handle ctf_merge_t;
85 extern ctf_merge_t *ctf_merge_init(int, int *);
86 extern int ctf_merge_add(ctf_merge_t *, ctf_file_t *);
87 extern int ctf_merge_set_nthreads(ctf_merge_t *, const uint_t);
88 extern int ctf_merge_label(ctf_merge_t *, const char *);
89 extern int ctf_merge_uniquify(ctf_merge_t *, ctf_file_t *, const char *);
90 extern int ctf_merge_merge(ctf_merge_t *, ctf_file_t **);
91 extern int ctf_merge_dedup(ctf_merge_t *, ctf_file_t **);
92 extern void ctf_merge_fini(ctf_merge_t *);
94 #define CTF_ELFWRITE_F_COMPRESS 0x1
95 extern int ctf_elffdwrite(ctf_file_t *, int, int, int);
96 extern int ctf_elfwrite(ctf_file_t *, const char *, const char *, int);
98 #ifdef __cplusplus
100 #endif
102 #endif /* _LIBCTF_H */