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