Documentation/devtools/maemo5/ltrace

(devtools template)
 
Line 1: Line 1:
 +
{{Devtools}}
 +
 +
== Description ==
== Description ==
Line 32: Line 35:
[[Documentation/devtools/maemo5/latrace|latrace]]
[[Documentation/devtools/maemo5/latrace|latrace]]
-
[[Category:Devtools]]
 
[[Category:Fremantle]]
[[Category:Fremantle]]

Latest revision as of 15:13, 11 March 2010

Image:Ambox_content.png
This article documents a developer tool.
A list of available devtools is available, together with installation instructions.


Contents

[edit] 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.

[edit] Packages

source: ltrace

binary: ltrace

[edit] Usage Examples

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

# ltrace -p pid

[edit] Links

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

[edit] See Also

strace, latrace