[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.42 and 1.43

version 1.42, 2010/06/29 17:35:15 version 1.43, 2010/06/29 20:30:33
Line 64 
Line 64 
   
 #include <compat/bsdos/bsdos_syscall.h>  #include <compat/bsdos/bsdos_syscall.h>
 #include <compat/freebsd/freebsd_syscall.h>  #include <compat/freebsd/freebsd_syscall.h>
 #if defined(__hppa__) || defined(__m68k__)  
 #include <compat/hpux/hpux_syscall.h>  
 #endif  
 #include <compat/ibcs2/ibcs2_syscall.h>  #include <compat/ibcs2/ibcs2_syscall.h>
 #include <compat/linux/linux_syscall.h>  #include <compat/linux/linux_syscall.h>
 #include <compat/osf1/osf1_syscall.h>  #include <compat/osf1/osf1_syscall.h>
Line 86 
Line 83 
   
 #include <compat/bsdos/bsdos_syscalls.c>  #include <compat/bsdos/bsdos_syscalls.c>
 #include <compat/freebsd/freebsd_syscalls.c>  #include <compat/freebsd/freebsd_syscalls.c>
 #if defined(__hppa__) || defined(__m68k__)  
 #include <compat/hpux/hpux_syscalls.c>  
 #endif  
 #include <compat/ibcs2/ibcs2_syscalls.c>  #include <compat/ibcs2/ibcs2_syscalls.c>
 #include <compat/linux/linux_syscalls.c>  #include <compat/linux/linux_syscalls.c>
 #include <compat/osf1/osf1_syscalls.c>  #include <compat/osf1/osf1_syscalls.c>
Line 112 
Line 106 
   
 static struct emulation emulations[] = {  static struct emulation emulations[] = {
         { "native",     syscallnames,           SYS_MAXSYSCALL },          { "native",     syscallnames,           SYS_MAXSYSCALL },
 #if defined(__hppa__) || defined(__m68k__)  
         { "hpux",       hpux_syscallnames,      HPUX_SYS_MAXSYSCALL },  
 #endif  
         { "ibcs2",      ibcs2_syscallnames,     IBCS2_SYS_MAXSYSCALL },          { "ibcs2",      ibcs2_syscallnames,     IBCS2_SYS_MAXSYSCALL },
         { "linux",      linux_syscallnames,     LINUX_SYS_MAXSYSCALL },          { "linux",      linux_syscallnames,     LINUX_SYS_MAXSYSCALL },
         { "osf1",       osf1_syscallnames,      OSF1_SYS_MAXSYSCALL },          { "osf1",       osf1_syscallnames,      OSF1_SYS_MAXSYSCALL },

Legend:
Removed from v.1.42  
changed lines
  Added in v.1.43