GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Sys::Trace::Results(3) User Contributed Perl Documentation Sys::Trace::Results(3)

Sys::Trace::Results - Results of a Sys::Trace

This object holds the results of a trace performed via Sys::Trace.

Initialises the object from a given trace. Normally called via the "results" method of Sys::Trace.

Returns the number of calls that are contained within this trace.

Return a list of all the calls. The system call name will be filtered against $call if provided (either a string or a Regexp reference).

Each element in the list will be a hash reference of the form:

  {
    name     => "/path/to/file",  # filename, if relevant
    call     => "open",           # system call name
    systime  => 0.000012,         # time spent in call
    walltime => 1277664686.665232 # 
    args     => [ ... ]           # arguments
    errno    => "ENOENT"          # errno, if error occurred
    strerror => "No such file or directory", # error string, if returned
    pid      => 1234,             # pid being traced
    return   => -1
  }

Return a list of files that were referenced by the system calls in this trace, optionally filtering on $path.

This is currently very basic, this module should provide the ability to perform analysis.

Sys::Trace for copyright, etc.
2010-06-27 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.