d8bbcd2221c9e90961780f37b53542ff5e0d47ea
[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 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
17 done
This page took 0.028785 seconds and 3 git commands to generate.