From: Mathieu Desnoyers Date: Sat, 16 Jul 2011 18:43:54 +0000 (-0400) Subject: cleanup: write event header slow should be static X-Git-Tag: v2.0-pre1~16 X-Git-Url: http://git.lttng.org/?a=commitdiff_plain;h=eb9a7857efa6d55e347b81383a7948d72214e574;p=lttng-modules.git cleanup: write event header slow should be static Signed-off-by: Mathieu Desnoyers --- diff --git a/ltt-ring-buffer-client.h b/ltt-ring-buffer-client.h index 5173b23b..974a696f 100644 --- a/ltt-ring-buffer-client.h +++ b/ltt-ring-buffer-client.h @@ -149,7 +149,7 @@ unsigned char record_header_size(const struct lib_ring_buffer_config *config, #include "wrapper/ringbuffer/api.h" -extern +static void ltt_write_event_header_slow(const struct lib_ring_buffer_config *config, struct lib_ring_buffer_ctx *ctx, uint32_t event_id); @@ -207,6 +207,7 @@ slow_path: ltt_write_event_header_slow(config, ctx, event_id); } +static void ltt_write_event_header_slow(const struct lib_ring_buffer_config *config, struct lib_ring_buffer_ctx *ctx, uint32_t event_id)