Jump to content

ktrace

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Ghettoblaster (talk | contribs) at 11:32, 10 January 2021 (→‎See also). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

ktrace
Written inC[citation needed]
Operating systemBSD Unix and Mac OS X
Available inEnglish
TypeTracing

ktrace is a utility included with certain versions of BSD Unix and Mac OS X that traces kernel interaction with a program and dumps it to disk for the purposes of debugging and analysis. Traced kernel operations include system calls, namei translations, signal processing, and I/O.[1]

ktrace is somewhat similar to Linux's strace, except for being much faster – with strace, every system call executed by the traced program requires context switch to the tracing program and back, while the tracing with ktrace is actually performed by the kernel, so no additional context switches are required.[citation needed]

Trace files generated by ktrace (named ktrace.out by default) can be viewed in human-readable form by using the kdump utility.[2]

Since Mac OS X 10.5 Leopard, ktrace has been replaced by DTrace.

See also

  • DTrace, Sun Microsystems's trace version, now running on OpenSolaris, FreeBSD, macOS, and Windows
  • kdump (Linux), Linux kernel's crash dump mechanism, which internally uses kexec
  • SystemTap
  • trace on Linux, part of the Linux Trace Toolkit

References

  1. ^ "ktrace". freebsd.org. 2012-05-31. Retrieved 2014-07-23.
  2. ^ "kdump". freebsd.org. 2014-03-28. Retrieved 2014-07-23.