convert from svn repository: remove tags directory
[lttv.git] / trunk / ltt-control / lttctl / ltt-armalluser.sh
CommitLineData
0d6eedb3 1#excluding core markers (already connected)
2#excluding locking markers (high traffic)
3
dde2e6b4 4echo Connecting all userspace markers of _CURRENTLY RUNNING_ processes only !
f9c31b2e 5echo All the markers listed here will also automatically be enabled if
6echo present in a newly created process.
0d6eedb3 7
8for a in /proc/[0-9]*; do
944462c4 9 for marker in `cat $a/markers | awk '{print $2}'`; do
dc335313 10 echo Connecting marker $a:$marker
0d6eedb3 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.025256 seconds and 4 git commands to generate.