Deleted Added
full compact
truss.h (294849) truss.h (295930)
1/*
2 * Copyright 2001 Jamey Wood
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

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

17 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 * SUCH DAMAGE.
24 *
1/*
2 * Copyright 2001 Jamey Wood
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

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

17 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 * SUCH DAMAGE.
24 *
25 * $FreeBSD: head/usr.bin/truss/truss.h 294849 2016-01-26 19:07:09Z jhb $
25 * $FreeBSD: head/usr.bin/truss/truss.h 295930 2016-02-23 19:56:29Z jhb $
26 */
27
28#include <sys/linker_set.h>
29#include <sys/queue.h>
30
31#define FOLLOWFORKS 0x00000001
32#define RELATIVETIMESTAMPS 0x00000002
33#define ABSOLUTETIMESTAMPS 0x00000004
34#define NOSIGS 0x00000008
35#define EXECVEARGS 0x00000010
36#define EXECVEENVS 0x00000020
37#define COUNTONLY 0x00000040
26 */
27
28#include <sys/linker_set.h>
29#include <sys/queue.h>
30
31#define FOLLOWFORKS 0x00000001
32#define RELATIVETIMESTAMPS 0x00000002
33#define ABSOLUTETIMESTAMPS 0x00000004
34#define NOSIGS 0x00000008
35#define EXECVEARGS 0x00000010
36#define EXECVEENVS 0x00000020
37#define COUNTONLY 0x00000040
38#define DISPLAYTIDS 0x00000080
38
39struct procinfo;
40struct trussinfo;
41
42struct procabi {
43 const char *type;
44 enum sysdecode_abi abi;
45 int (*fetch_args)(struct trussinfo *, u_int);

--- 78 unchanged lines hidden ---
39
40struct procinfo;
41struct trussinfo;
42
43struct procabi {
44 const char *type;
45 enum sysdecode_abi abi;
46 int (*fetch_args)(struct trussinfo *, u_int);

--- 78 unchanged lines hidden ---