Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 765532c8 authored by Arnaldo Carvalho de Melo's avatar Arnaldo Carvalho de Melo
Browse files

perf script: Finish the rename from trace to script



The scripts have calls to 'perf trace' that need to be converted to 'perf script', do it.

This problem was introduced in 133dc4c3.

Reported-by: default avatarTorok Edwin <edwintorok@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: Tom Zanussi <tzanussi@gmail.com>
Cc: Torok Edwin <edwintorok@gmail.com>
LKML-Reference: <new-submission>
Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 104db7ff
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@

#line 1 "Context.xs"
/*
 * Context.xs.  XS interfaces for perf trace.
 * Context.xs.  XS interfaces for perf script.
 *
 * Copyright (C) 2009 Tom Zanussi <tzanussi@gmail.com>
 *
+2 −2
Original line number Diff line number Diff line
/*
 * Context.xs.  XS interfaces for perf trace.
 * Context.xs.  XS interfaces for perf script.
 *
 * Copyright (C) 2009 Tom Zanussi <tzanussi@gmail.com>
 *
@@ -23,7 +23,7 @@
#include "perl.h"
#include "XSUB.h"
#include "../../../perf.h"
#include "../../../util/trace-event.h"
#include "../../../util/script-event.h"

MODULE = Perf::Trace::Context		PACKAGE = Perf::Trace::Context
PROTOTYPES: ENABLE
+2 −2
Original line number Diff line number Diff line
Perf-Trace-Util version 0.01
============================

This module contains utility functions for use with perf trace.
This module contains utility functions for use with perf script.

Core.pm and Util.pm are pure Perl modules; Core.pm contains routines
that the core perf support for Perl calls on and should always be
@@ -33,7 +33,7 @@ After you do that:

INSTALLATION

Building perf with perf trace Perl scripting should install this
Building perf with perf script Perl scripting should install this
module in the right place.

You should make sure libperl and ExtUtils/Embed.pm are installed first
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ Perf::Trace::Context - Perl extension for accessing functions in perf.

=head1 SEE ALSO

Perf (trace) documentation
Perf (script) documentation

=head1 AUTHOR

+2 −2
Original line number Diff line number Diff line
@@ -163,7 +163,7 @@ sub dump_symbolic_fields
__END__
=head1 NAME

Perf::Trace::Core - Perl extension for perf trace
Perf::Trace::Core - Perl extension for perf script

=head1 SYNOPSIS

@@ -171,7 +171,7 @@ Perf::Trace::Core - Perl extension for perf trace

=head1 SEE ALSO

Perf (trace) documentation
Perf (script) documentation

=head1 AUTHOR

Loading