1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
/*
* This file and its contents are supplied under the terms of the
* Common Development and Distribution License ("CDDL"), version 1.0.
* You may only use this file in accordance with the terms of version
* 1.0 of the CDDL.
*
* A full copy of the text of the CDDL should have accompanied this
* source. A copy of the CDDL is also available via the Internet at
* http://www.illumos.org/license/CDDL.
*/
/*
* Copyright 2015 Joyent, Inc.
*/
#ifndef _LIBCTF_IMPL_H
#define _LIBCTF_IMPL_H
/*
* Portions of libctf implementations that are only suitable for CTF's userland
* library, eg. converting and merging related routines.
*/
#include <libelf.h>
#include <libctf.h>
#include <ctf_impl.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef enum ctf_conv_status {
CTF_CONV_SUCCESS = 0,
CTF_CONV_ERROR = 1,
CTF_CONV_NOTSUP = 2
} ctf_conv_status_t;
typedef ctf_conv_status_t (*ctf_convert_f)(int, Elf *, uint_t, int *,
ctf_file_t **, char *, size_t);
extern ctf_conv_status_t ctf_dwarf_convert(int, Elf *, uint_t, int *,
ctf_file_t **, char *, size_t);
/*
* zlib compression routines
*/
extern int ctf_compress(ctf_file_t *fp, void **, size_t *, size_t *);
extern int ctf_diff_self(ctf_diff_t *, ctf_diff_type_f, void *);
/*
* Internal debugging aids
*/
extern void ctf_phase_dump(ctf_file_t *, const char *);
#ifdef __cplusplus
}
#endif
#endif /* _LIBCTF_IMPL_H */
|