1 /****************************************************************************
2 * ltt-instrument-functions.c
8 #define inline inline __attribute__((always_inline))
11 #define LTT_TRACE_FAST
12 #include <ltt/ltt-usertrace-fast.h>
13 #include <ltt/ltt-facility-user_generic.h>
15 void __attribute__((no_instrument_function
)) __cyg_profile_func_enter (
19 /* don't care about the return value */
20 trace_user_generic_function_entry(this_fn
, call_site
);
23 void __attribute__((no_instrument_function
)) __cyg_profile_func_exit (
27 /* don't care about the return value */
28 trace_user_generic_function_exit(this_fn
, call_site
);
This page took 0.031094 seconds and 4 git commands to generate.