Version 2.5.7
[lttng-ust.git] / liblttng-ust / tracepoint-internal.h
index 98688ace8bd80c0a31aaefa7eb152fa9238565a7..2c99dbdd4e2876d237b68f5578d6e51d972d4185 100644 (file)
 #define TRACE_DEFAULT  TRACE_DEBUG_LINE
 
 struct tracepoint_lib {
-       struct cds_list_head list;
+       struct cds_list_head list;      /* list of registered libs */
        struct tracepoint * const *tracepoints_start;
        int tracepoints_count;
+       struct cds_list_head callsites;
 };
 
 extern int tracepoint_probe_register_noupdate(const char *name,
-               void *callback, void *priv,
+               void (*callback)(void), void *priv,
                const char *signature);
 extern int tracepoint_probe_unregister_noupdate(const char *name,
-               void *callback, void *priv);
+               void (*callback)(void), void *priv);
 extern void tracepoint_probe_update_all(void);
 
 /*
This page took 0.022996 seconds and 4 git commands to generate.