109
edits
Joel Reymont (talk | contribs) |
Joel Reymont (talk | contribs) |
||
| Line 10: | Line 10: | ||
=== August 24, 2009 === | === August 24, 2009 === | ||
My DTrace scripts live [http://github.com/wagerlabs/firefox-startup/tree/master here]. | |||
=== DTrace tips and tricks === | |||
''vtimestamp'' measures CPU time of the current thread, excluding IO and DTrace overhead. ''timestamp'' can still be used for deltas but the goal is to use as few pid$target probes as possible as they affect ''timestamp'' when dtrace has to switch between kernel and userland. io and syscall providers are fast and run in the kernel. | ''vtimestamp'' measures CPU time of the current thread, excluding IO and DTrace overhead. ''timestamp'' can still be used for deltas but the goal is to use as few pid$target probes as possible as they affect ''timestamp'' when dtrace has to switch between kernel and userland. io and syscall providers are fast and run in the kernel. | ||
=== DTrace tips and tricks === | |||
Have you seen this kind of error before? | Have you seen this kind of error before? | ||
edits