Deleted Added
full compact
extern.h (87703) extern.h (101282)
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 87703 2001-12-11 23:34:02Z markm $
31 * $FreeBSD: head/usr.bin/truss/extern.h 101282 2002-08-04 00:46:48Z mdodd $
32 */
33
34extern int setup_and_wait(char **);
35extern int start_tracing(int, int);
36extern void restore_proc(int);
37extern const char *ioctlname(register_t val);
38#ifdef __alpha__
32 */
33
34extern int setup_and_wait(char **);
35extern int start_tracing(int, int);
36extern void restore_proc(int);
37extern const char *ioctlname(register_t val);
38#ifdef __alpha__
39extern void alpha_syscall_entry(int, int);
40extern void alpha_syscall_exit(int, int);
39extern void alpha_syscall_entry(struct trussinfo *, int);
40extern int alpha_syscall_exit(struct trussinfo *, int);
41#endif
42#ifdef __i386__
41#endif
42#ifdef __i386__
43extern void i386_syscall_entry(int, int);
44extern void i386_syscall_exit(int, int);
45extern void i386_linux_syscall_entry(int, int);
46extern void i386_linux_syscall_exit(int, int);
43extern void i386_syscall_entry(struct trussinfo *, int);
44extern int i386_syscall_exit(struct trussinfo *, int);
45extern void i386_linux_syscall_entry(struct trussinfo *, int);
46extern int i386_linux_syscall_exit(struct trussinfo *, int);
47#endif
47#endif