WIP FPC-III support
[linux/fpc-iii.git] / tools / perf / scripts / perl / Perf-Trace-Util / lib / Perf / Trace / Context.pm
blob4e2f6039ac920f60192a7cee033339afbdf26042
1 package Perf::Trace::Context;
3 use 5.010000;
4 use strict;
5 use warnings;
7 require Exporter;
9 our @ISA = qw(Exporter);
11 our %EXPORT_TAGS = ( 'all' => [ qw(
12 ) ] );
14 our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
16 our @EXPORT = qw(
17 common_pc common_flags common_lock_depth
20 our $VERSION = '0.01';
22 require XSLoader;
23 XSLoader::load('Perf::Trace::Context', $VERSION);
26 __END__
27 =head1 NAME
29 Perf::Trace::Context - Perl extension for accessing functions in perf.
31 =head1 SYNOPSIS
33 use Perf::Trace::Context;
35 =head1 SEE ALSO
37 Perf (script) documentation
39 =head1 AUTHOR
41 Tom Zanussi, E<lt>tzanussi@gmail.com<gt>
43 =head1 COPYRIGHT AND LICENSE
45 Copyright (C) 2009 by Tom Zanussi
47 This library is free software; you can redistribute it and/or modify
48 it under the same terms as Perl itself, either Perl version 5.10.0 or,
49 at your option, any later version of Perl 5 you may have available.
51 Alternatively, this software may be distributed under the terms of the
52 GNU General Public License ("GPL") version 2 as published by the Free
53 Software Foundation.
55 =cut