extern.h (1bc99f1144e317fd1e8c023f95ec6385a00f4417) | extern.h (a5d31d16318ec4d216daafe658522688a847476f) |
---|---|
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. --- 25 unchanged lines hidden (view full) --- 34extern int setup_and_wait(char **); 35extern int start_tracing(int, int, int); 36extern void restore_proc(int); 37extern const char *ioctlname(register_t val); 38#ifdef __alpha__ 39extern void alpha_syscall_entry(struct trussinfo *, int); 40extern long alpha_syscall_exit(struct trussinfo *, int); 41#endif | 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. --- 25 unchanged lines hidden (view full) --- 34extern int setup_and_wait(char **); 35extern int start_tracing(int, int, int); 36extern void restore_proc(int); 37extern const char *ioctlname(register_t val); 38#ifdef __alpha__ 39extern void alpha_syscall_entry(struct trussinfo *, int); 40extern long alpha_syscall_exit(struct trussinfo *, int); 41#endif |
42#ifdef __amd64__ 43extern void amd64_syscall_entry(struct trussinfo *, int); 44extern long amd64_syscall_exit(struct trussinfo *, int); 45#endif |
|
42#ifdef __i386__ 43extern void i386_syscall_entry(struct trussinfo *, int); 44extern long i386_syscall_exit(struct trussinfo *, int); 45extern void i386_linux_syscall_entry(struct trussinfo *, int); 46extern long i386_linux_syscall_exit(struct trussinfo *, int); 47#endif 48#ifdef __ia64__ 49extern void ia64_syscall_entry(struct trussinfo *, int); 50extern long ia64_syscall_exit(struct trussinfo *, int); 51#endif 52#ifdef __sparc64__ 53extern void sparc64_syscall_entry(struct trussinfo *, int); 54extern long sparc64_syscall_exit(struct trussinfo *, int); 55#endif 56 57extern int Procfd; | 46#ifdef __i386__ 47extern void i386_syscall_entry(struct trussinfo *, int); 48extern long i386_syscall_exit(struct trussinfo *, int); 49extern void i386_linux_syscall_entry(struct trussinfo *, int); 50extern long i386_linux_syscall_exit(struct trussinfo *, int); 51#endif 52#ifdef __ia64__ 53extern void ia64_syscall_entry(struct trussinfo *, int); 54extern long ia64_syscall_exit(struct trussinfo *, int); 55#endif 56#ifdef __sparc64__ 57extern void sparc64_syscall_entry(struct trussinfo *, int); 58extern long sparc64_syscall_exit(struct trussinfo *, int); 59#endif 60 61extern int Procfd; |