--- ray/src/util/rtcontrib.c 2005/05/26 21:35:35 1.5 +++ ray/src/util/rtcontrib.c 2005/05/28 22:27:54 1.6 @@ -1,5 +1,5 @@ #ifndef lint -static const char RCSid[] = "$Id: rtcontrib.c,v 1.5 2005/05/26 21:35:35 greg Exp $"; +static const char RCSid[] = "$Id: rtcontrib.c,v 1.6 2005/05/28 22:27:54 greg Exp $"; #endif /* * Gather rtrace output to compute contributions from particular sources @@ -66,13 +66,12 @@ struct rtproc { }; /* rtrace process buffer */ /* rtrace command and defaults */ -char *rtargv[256] = { "rtrace", "-dt", "0", "-dj", ".5", "-dr", "3", +char *rtargv[256] = { "rtrace", "-dj", ".5", "-dr", "3", "-ab", "1", "-ad", "128", }; -int rtargc = 11; +int rtargc = 9; /* overriding rtrace options */ -char *myrtopts[] = { "-o~~TmWdp", "-h-", - "-x", "1", "-y", "0", - "-as", "0", "-aa", "0", NULL }; +char *myrtopts[] = { "-o~~TmWdp", "-h-", "-x", "1", "-y", "0", + "-dt", "0", "-as", "0", "-aa", "0", NULL }; struct rtproc rt0; /* head of rtrace process list */