update
[ltt-control.git] / ltt-control / lttctl / ltt-armalluser.sh
CommitLineData
6615e1cf 1#excluding core markers (already connected)
2#excluding locking markers (high traffic)
3
56bf1966 4echo Connecting all userspace markers of _CURRENTLY RUNNING_ processes only !
4d33c601 5echo All the markers listed here will also automatically be enabled if
6echo present in a newly created process.
6615e1cf 7
8for a in /proc/[0-9]*; do
fb1caac2 9 for marker in `cat $a/markers | awk '{print $2}'`; do
bc5042b2 10 echo Connecting marker $a:$marker
6615e1cf 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.023042 seconds and 4 git commands to generate.