add marker user activation
[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 !
6615e1cf 5
6for a in /proc/[0-9]*; do
7 echo Connecting markers in $a
8
9 for marker in $a/markers; do
10 case $marker in
11 *)
12 CHANNEL=
13 ;;
14 esac
15 echo "connect $marker default dynamic $CHANNEL" > /proc/ltt
16 done
17done
This page took 0.022753 seconds and 4 git commands to generate.