Documentation/devtools/maemo5/ltrace

(New page: == Description == Ltrace traces both system and library calls. Ltrace is quite similar to strace the main differences being: * ltrace can trace ...)
Line 29: Line 29:
== See Also ==
== See Also ==
-
[[Documentation/devtools/maemo5/strace|strace]]
+
[[Documentation/devtools/maemo5/strace|strace]],
 +
[[Documentation/devtools/maemo5/latrace|latrace]]

Revision as of 13:14, 6 October 2009

Contents

Description

Ltrace traces both system and library calls.

Ltrace is quite similar to strace the main differences being:

  • ltrace can trace also function calls between shared libraries.
  • ltrace does not work over clone(). If threading or forking is used, ltrace needs to be attached to the process after that has happened.

Packages

source: ltrace

binary: ltrace

Usage Examples

Attach to the process with process id pid and begin tracing:

# ltrace -p pid

Links

[ltrace man page](/development/documentation/man_pages/ltrace.html)

See Also

strace, latrace