290e360b42f4b16b02ff32cbf8a7340be2b4824d
[ltt-control.git] / tags / ltt-control-0.51-12082008 / lttctl / ltt-armalluser.sh
1 #excluding core markers (already connected)
2 #excluding locking markers (high traffic)
3
4 echo Connecting all userspace markers of _CURRENTLY RUNNING_ processes only !
5 echo All the markers listed here will also automatically be enabled if
6 echo present in a newly created process.
7
8 for 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
18 done
This page took 0.029401 seconds and 3 git commands to generate.