Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros | Typedefs | Functions | Variables
trace-event-perl.c File Reference
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <errno.h>
#include "../util.h"
#include <EXTERN.h>
#include <perl.h>
#include "../../perf.h"
#include "../thread.h"
#include "../event.h"
#include "../trace-event.h"
#include "../evsel.h"

Go to the source code of this file.

Macros

#define FTRACE_MAX_EVENT   ((1 << (sizeof(unsigned short) * 8)) - 1)
 

Typedefs

typedef PerlInterpreter * INTERP
 

Functions

void boot_Perf__Trace__Context (pTHX_ CV *cv)
 
void boot_DynaLoader (pTHX_ CV *cv)
 
void xs_init (pTHX)
 

Variables

INTERP my_perl
 
struct event_formatevents [FTRACE_MAX_EVENT]
 
struct scripting_contextscripting_context
 
struct scripting_ops perl_scripting_ops
 

Macro Definition Documentation

#define FTRACE_MAX_EVENT   ((1 << (sizeof(unsigned short) * 8)) - 1)

Definition at line 56 of file trace-event-perl.c.

Typedef Documentation

typedef PerlInterpreter* INTERP

Definition at line 40 of file trace-event-perl.c.

Function Documentation

void boot_DynaLoader ( pTHX_ CV *  cv)
void boot_Perf__Trace__Context ( pTHX_ CV *  cv)
void xs_init ( pTHX  )

Definition at line 44 of file trace-event-perl.c.

Variable Documentation

Definition at line 59 of file trace-event-perl.c.

INTERP my_perl

Definition at line 54 of file trace-event-perl.c.

struct scripting_ops perl_scripting_ops
Initial value:
= {
.name = "Perl",
.start_script = perl_start_script,
.stop_script = perl_stop_script,
.process_event = perl_process_event,
.generate_script = perl_generate_script,
}

Definition at line 636 of file trace-event-perl.c.

Definition at line 31 of file trace-event-scripting.c.