Bug 5877 - utilities should trace children by default
Summary: utilities should trace children by default
Status: NEW
Alias: None
Product: frysk
Classification: Unclassified
Component: general (show other bugs)
Version: unspecified
: P2 normal
Target Milestone: ---
Assignee: Sami Wagiaalla
URL:
Keywords:
Depends on: 5684
Blocks: 2245 3361 3364 5861 5876
  Show dependency treegraph
 
Reported: 2008-03-05 16:49 UTC by Andrew Cagney
Modified: 2008-03-05 16:49 UTC (History)
0 users

See Also:
Host:
Target:
Build:
Last reconfirmed:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Andrew Cagney 2008-03-05 16:49:20 UTC
For instance, instead of:

  $ ./frysk/bindir/ftrace -- ./frysk/pkglibdir/funit-fib-fork 3
  10409.10409 attached [...]/funit-fib-fork
  fib (3) = 2
  10409.10409 exited with status 0

default to:

  $ ./frysk/bindir/ftrace -- ./frysk/pkglibdir/funit-fib-fork 3 
  10472.10472 attached [...]/funit-fib-fork
  10473.10473 attached [...]/funit-fib-fork
  10475.10475 attached [...]/funit-fib-fork
  10474.10474 attached [...]/funit-fib-fork
  10476.10476 attached [...]/funit-fib-fork
  10475.10475 exited with status 1
  10474.10474 exited with status 1
  10476.10476 exited with status 0
  10473.10473 exited with status 1
  fib (3) = 2
  10472.10472 exited with status 0

with options to both explicitly enable / disable the behavior.