[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.2 and 1.3

version 1.2, 1996/05/24 09:19:34 version 1.3, 1996/05/27 07:59:04
Line 100 
Line 100 
 };  };
   
 static struct emulation emulations[] = {  static struct emulation emulations[] = {
         { "netbsd",          syscallnames,        SYS_MAXSYSCALL },          { "native",          syscallnames,        SYS_MAXSYSCALL },
         { "hpux",       hpux_syscallnames,   HPUX_SYS_MAXSYSCALL },          { "hpux",       hpux_syscallnames,   HPUX_SYS_MAXSYSCALL },
         { "ibcs2",     ibcs2_syscallnames,  IBCS2_SYS_MAXSYSCALL },          { "ibcs2",     ibcs2_syscallnames,  IBCS2_SYS_MAXSYSCALL },
         { "linux",     linux_syscallnames,  LINUX_SYS_MAXSYSCALL },          { "linux",     linux_syscallnames,  LINUX_SYS_MAXSYSCALL },
Line 129 
Line 129 
         register void *m;          register void *m;
         int trpoints = ALL_POINTS;          int trpoints = ALL_POINTS;
   
         current = &emulations[0];       /* NetBSD */          current = &emulations[0];       /* native */
   
         while ((ch = getopt(argc, argv, "e:f:dlm:nRTt:")) != -1)          while ((ch = getopt(argc, argv, "e:f:dlm:nRTt:")) != -1)
                 switch (ch) {                  switch (ch) {

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3