AC_PREREQ(2.57)
AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
#AC_WITH_LTDL # not needed ?
-AM_INIT_AUTOMAKE(LinuxTraceToolkitViewer,0.8.26-05032006)
+AM_INIT_AUTOMAKE(LinuxTraceToolkitViewer,0.8.27-05032006)
AM_CONFIG_HEADER(config.h)
AM_PROG_LIBTOOL
<field name="string"><string/></field>
</event>
+ <event name=function_entry no_instrument_function>
+ <description>Entry in a function</description>
+ <field name="this_fn"><pointer/></field>
+ <field name="call_site"><pointer/></field>
+ </event>
+
+ <event name=function_exit no_instrument_function>
+ <description>Exit from a function</description>
+ <field name="this_fn"><pointer/></field>
+ <field name="call_site"><pointer/></field>
+ </event>
+
</facility>
ev->per_trace = 0;
ev->per_tracefile = 0;
ev->param_buffer = 0;
+ ev->no_instrument_function = 0;
while(1) {
token = getToken(in);
ev->per_tracefile = 1;
} else if(!strcmp("param_buffer", token)) {
ev->param_buffer = 1;
+ } else if(!strcmp("no_instrument_function", token)) {
+ ev->no_instrument_function = 1;
}
}
int per_trace; /* Is the event able to be logged to a specific trace ? */
int per_tracefile; /* Must we log this event in a specific tracefile ? */
int param_buffer; /* For userspace tracing : takes a buffer as parameter? */
+ int no_instrument_function;
} event_t;
typedef struct _facility {