Mwinelands strace foo: Difference between revisions
Jump to navigation
Jump to search
Created page with "Here is the gold if ( $_SERVER['REMOTE_ADDR'] == '10.30.4.80' ) { $file = 'pid.log'; $current = getmypid(); file_put_contents($file, $current); s..." |
No edit summary |
||
Line 7: | Line 7: | ||
sleep(7); | sleep(7); | ||
} | } | ||
strace -Ff -s512 -Tt -o My-strace-results -p `cat pid.log` |
Revision as of 23:45, 6 November 2015
Here is the gold
if ( $_SERVER['REMOTE_ADDR'] == '10.30.4.80' ) { $file = 'pid.log'; $current = getmypid(); file_put_contents($file, $current); sleep(7); }
strace -Ff -s512 -Tt -o My-strace-results -p `cat pid.log`