| 66 |
|
}; /* rtrace process buffer */ |
| 67 |
|
|
| 68 |
|
/* rtrace command and defaults */ |
| 69 |
< |
char *rtargv[256] = { "rtrace", "-dt", "0", "-dj", ".5", "-dr", "3", |
| 69 |
> |
char *rtargv[256] = { "rtrace", "-dj", ".5", "-dr", "3", |
| 70 |
|
"-ab", "1", "-ad", "128", }; |
| 71 |
< |
int rtargc = 11; |
| 71 |
> |
int rtargc = 9; |
| 72 |
|
/* overriding rtrace options */ |
| 73 |
< |
char *myrtopts[] = { "-o~~TmWdp", "-h-", |
| 74 |
< |
"-x", "1", "-y", "0", |
| 75 |
< |
"-as", "0", "-aa", "0", NULL }; |
| 73 |
> |
char *myrtopts[] = { "-o~~TmWdp", "-h-", "-x", "1", "-y", "0", |
| 74 |
> |
"-dt", "0", "-as", "0", "-aa", "0", NULL }; |
| 75 |
|
|
| 76 |
|
struct rtproc rt0; /* head of rtrace process list */ |
| 77 |
|
|