[BACK]Return to kdump.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / kdump

Diff for /src/usr.bin/kdump/kdump.c between version 1.45 and 1.46

version 1.45, 2010/07/01 17:26:52 version 1.46, 2010/07/02 20:00:54
Line 65 
Line 65 
 #include <compat/bsdos/bsdos_syscall.h>  #include <compat/bsdos/bsdos_syscall.h>
 #include <compat/freebsd/freebsd_syscall.h>  #include <compat/freebsd/freebsd_syscall.h>
 #include <compat/linux/linux_syscall.h>  #include <compat/linux/linux_syscall.h>
 #include <compat/sunos/sunos_syscall.h>  
 #include <compat/svr4/svr4_syscall.h>  #include <compat/svr4/svr4_syscall.h>
   
 #define KTRACE  #define KTRACE
Line 82 
Line 81 
 #include <compat/bsdos/bsdos_syscalls.c>  #include <compat/bsdos/bsdos_syscalls.c>
 #include <compat/freebsd/freebsd_syscalls.c>  #include <compat/freebsd/freebsd_syscalls.c>
 #include <compat/linux/linux_syscalls.c>  #include <compat/linux/linux_syscalls.c>
 #include <compat/sunos/sunos_syscalls.c>  
 #include <compat/svr4/svr4_syscalls.c>  #include <compat/svr4/svr4_syscalls.c>
 #undef KTRACE  #undef KTRACE
 #undef PTRACE  #undef PTRACE
Line 103 
Line 101 
 static struct emulation emulations[] = {  static struct emulation emulations[] = {
         { "native",     syscallnames,           SYS_MAXSYSCALL },          { "native",     syscallnames,           SYS_MAXSYSCALL },
         { "linux",      linux_syscallnames,     LINUX_SYS_MAXSYSCALL },          { "linux",      linux_syscallnames,     LINUX_SYS_MAXSYSCALL },
         { "sunos",      sunos_syscallnames,     SUNOS_SYS_MAXSYSCALL },  
         { "svr4",       svr4_syscallnames,      SVR4_SYS_MAXSYSCALL },          { "svr4",       svr4_syscallnames,      SVR4_SYS_MAXSYSCALL },
         { "bsdos",      bsdos_syscallnames,     BSDOS_SYS_MAXSYSCALL },          { "bsdos",      bsdos_syscallnames,     BSDOS_SYS_MAXSYSCALL },
         { "freebsd",    freebsd_syscallnames,   FREEBSD_SYS_MAXSYSCALL },          { "freebsd",    freebsd_syscallnames,   FREEBSD_SYS_MAXSYSCALL },

Legend:
Removed from v.1.45  
changed lines
  Added in v.1.46