can we measure the traffic between user and kernel mode
From: Alexandre Courbot <hidden>
Date: 2011-01-28 01:07:15
From: Alexandre Courbot <hidden>
Date: 2011-01-28 01:07:15
I can "strace -o -tt 123 a.out" before "A begin" but how could I combine console output with the content of strace?
strace does output to stderr unless you specify the -o option. So by using something like $ strace -tt your_program or $ strace -tt your_program &> log.txt you will have both outputs intermingled. Note that the console output of your program will appear in the middle of the corresponding write() system call. Alex.