Deleted Added
full compact
extern.h (144178) extern.h (154047)
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 144178 2005-03-27 12:53:25Z alfred $
31 * $FreeBSD: head/usr.bin/truss/extern.h 154047 2006-01-05 05:57:47Z grehan $
32 */
33
34extern int setup_and_wait(char **);
35extern int start_tracing(int, int, int, int);
36extern void restore_proc(int);
37extern const char *ioctlname(register_t val);
38extern char *strsig(int sig);
39#ifdef __alpha__

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

49extern long i386_syscall_exit(struct trussinfo *, int);
50extern void i386_linux_syscall_entry(struct trussinfo *, int);
51extern long i386_linux_syscall_exit(struct trussinfo *, int);
52#endif
53#ifdef __ia64__
54extern void ia64_syscall_entry(struct trussinfo *, int);
55extern long ia64_syscall_exit(struct trussinfo *, int);
56#endif
32 */
33
34extern int setup_and_wait(char **);
35extern int start_tracing(int, int, int, int);
36extern void restore_proc(int);
37extern const char *ioctlname(register_t val);
38extern char *strsig(int sig);
39#ifdef __alpha__

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

49extern long i386_syscall_exit(struct trussinfo *, int);
50extern void i386_linux_syscall_entry(struct trussinfo *, int);
51extern long i386_linux_syscall_exit(struct trussinfo *, int);
52#endif
53#ifdef __ia64__
54extern void ia64_syscall_entry(struct trussinfo *, int);
55extern long ia64_syscall_exit(struct trussinfo *, int);
56#endif
57#ifdef __powerpc__
58extern void powerpc_syscall_entry(struct trussinfo *, int);
59extern long powerpc_syscall_exit(struct trussinfo *, int);
60#endif
57#ifdef __sparc64__
58extern void sparc64_syscall_entry(struct trussinfo *, int);
59extern long sparc64_syscall_exit(struct trussinfo *, int);
60#endif
61
62extern int Procfd;
61#ifdef __sparc64__
62extern void sparc64_syscall_entry(struct trussinfo *, int);
63extern long sparc64_syscall_exit(struct trussinfo *, int);
64#endif
65
66extern int Procfd;