Deleted Added
full compact
extern.h (168569) extern.h (179051)
1/*
2 * Copryight 1997 Sean Eric Fagan
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.

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

23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 *
1/*
2 * Copryight 1997 Sean Eric Fagan
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.

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

23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 *
31 * $FreeBSD: head/usr.bin/truss/extern.h 168569 2007-04-10 04:03:34Z delphij $
31 * $FreeBSD: head/usr.bin/truss/extern.h 179051 2008-05-16 15:34:06Z jhb $
32 */
33
34extern int setup_and_wait(char **);
35extern int start_tracing(int);
36extern void restore_proc(int);
37extern void waitevent(struct trussinfo *);
38extern const char *ioctlname(register_t val);
39extern char *strsig(int sig);
40#ifdef __alpha__
41extern void alpha_syscall_entry(struct trussinfo *, int);
42extern long alpha_syscall_exit(struct trussinfo *, int);
43#endif
44#ifdef __amd64__
45extern void amd64_syscall_entry(struct trussinfo *, int);
46extern long amd64_syscall_exit(struct trussinfo *, int);
32 */
33
34extern int setup_and_wait(char **);
35extern int start_tracing(int);
36extern void restore_proc(int);
37extern void waitevent(struct trussinfo *);
38extern const char *ioctlname(register_t val);
39extern char *strsig(int sig);
40#ifdef __alpha__
41extern void alpha_syscall_entry(struct trussinfo *, int);
42extern long alpha_syscall_exit(struct trussinfo *, int);
43#endif
44#ifdef __amd64__
45extern void amd64_syscall_entry(struct trussinfo *, int);
46extern long amd64_syscall_exit(struct trussinfo *, int);
47extern void amd64_linux32_syscall_entry(struct trussinfo *, int);
48extern long amd64_linux32_syscall_exit(struct trussinfo *, int);
49extern void amd64_fbsd32_syscall_entry(struct trussinfo *, int);
50extern long amd64_fbsd32_syscall_exit(struct trussinfo *, int);
47#endif
48#ifdef __i386__
49extern void i386_syscall_entry(struct trussinfo *, int);
50extern long i386_syscall_exit(struct trussinfo *, int);
51extern void i386_linux_syscall_entry(struct trussinfo *, int);
52extern long i386_linux_syscall_exit(struct trussinfo *, int);
53#endif
54#ifdef __ia64__

--- 12 unchanged lines hidden ---
51#endif
52#ifdef __i386__
53extern void i386_syscall_entry(struct trussinfo *, int);
54extern long i386_syscall_exit(struct trussinfo *, int);
55extern void i386_linux_syscall_entry(struct trussinfo *, int);
56extern long i386_linux_syscall_exit(struct trussinfo *, int);
57#endif
58#ifdef __ia64__

--- 12 unchanged lines hidden ---