fix lttd append
[ltt-control.git] / tags / ltt-control-0.51-12082008 / lttctl / ltt-armalluser.sh
CommitLineData
366ebe80 1#excluding core markers (already connected)
2#excluding locking markers (high traffic)
3
4echo Connecting all userspace markers of _CURRENTLY RUNNING_ processes only !
5echo All the markers listed here will also automatically be enabled if
6echo present in a newly created process.
7
8for a in /proc/[0-9]*; do
9 for marker in `cat $a/markers | awk '{print $2}'`; do
10 echo Connecting marker $a:$marker
11 case $marker in
12 *)
13 CHANNEL=
14 ;;
15 esac
16 echo "connect $marker default dynamic $CHANNEL" > /proc/ltt
17 done
18done
This page took 0.022397 seconds and 4 git commands to generate.