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

Diff for /src/usr.bin/gprof/Attic/vax.c between version 1.1 and 1.2

version 1.1, 1995/10/18 08:45:21 version 1.2, 1996/05/01 13:40:17
Line 1 
Line 1 
 /*      $NetBSD: vax.c,v 1.5 1995/04/19 07:16:30 cgd Exp $      */  /*      $NetBSD: vax.c,v 1.6 1996/04/20 14:56:37 ragge Exp $    */
   
 /*  /*
  * Copyright (c) 1983, 1993   * Copyright (c) 1983, 1993
Line 37 
Line 37 
 #if 0  #if 0
 static char sccsid[] = "@(#)vax.c       8.1 (Berkeley) 6/6/93";  static char sccsid[] = "@(#)vax.c       8.1 (Berkeley) 6/6/93";
 #else  #else
 static char rcsid[] = "$NetBSD: vax.c,v 1.5 1995/04/19 07:16:30 cgd Exp $";  static char rcsid[] = "$NetBSD: vax.c,v 1.6 1996/04/20 14:56:37 ragge Exp $";
 #endif  #endif
 #endif /* not lint */  #endif /* not lint */
   
Line 53 
Line 53 
         (double) 0.0 ,                  /* ticks in this routine */          (double) 0.0 ,                  /* ticks in this routine */
         (double) 0.0 ,                  /* cumulative ticks in children */          (double) 0.0 ,                  /* cumulative ticks in children */
         (long) 0 ,                      /* how many times called */          (long) 0 ,                      /* how many times called */
           (long) 0 ,                      /* times called by live arcs */
         (long) 0 ,                      /* how many calls to self */          (long) 0 ,                      /* how many calls to self */
         (double) 1.0 ,                  /* propagation fraction */          (double) 1.0 ,                  /* propagation fraction */
         (double) 0.0 ,                  /* self propagation time */          (double) 0.0 ,                  /* self propagation time */
         (double) 0.0 ,                  /* child propagation time */          (double) 0.0 ,                  /* child propagation time */
         (bool) 0 ,                      /* print flag */          (short) 0 ,                     /* print flag */
           (short) 0 ,                     /* see below */
         (int) 0 ,                       /* index in the graph list */          (int) 0 ,                       /* index in the graph list */
         (int) 0 ,                       /* graph call chain top-sort order */          (int) 0 ,                       /* graph call chain top-sort order */
         (int) 0 ,                       /* internal number of cycle on */          (int) 0 ,                       /* internal number of cycle on */
           (int) 0 ,                       /* number of live parent arcs */
         (struct nl *) &indirectchild ,  /* pointer to head of cycle */          (struct nl *) &indirectchild ,  /* pointer to head of cycle */
         (struct nl *) 0 ,               /* pointer to next member of cycle */          (struct nl *) 0 ,               /* pointer to next member of cycle */
         (arctype *) 0 ,                 /* list of caller arcs */          (arctype *) 0 ,                 /* list of caller arcs */

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