X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Fcommon%2Fconsumer%2Fconsumer-timer.h;fp=src%2Fcommon%2Fconsumer%2Fconsumer-timer.h;h=0000000000000000000000000000000000000000;hb=7532fa3bd22e403958f46cd35c824f490d93292d;hp=85751442f7751eb0b2467c292290004f1fe87216;hpb=985aea182b618c85c51651f224abedfe367c75ee;p=lttng-tools.git diff --git a/src/common/consumer/consumer-timer.h b/src/common/consumer/consumer-timer.h deleted file mode 100644 index 85751442f..000000000 --- a/src/common/consumer/consumer-timer.h +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Copyright (C) 2011 Julien Desfossez - * Copyright (C) 2011 Mathieu Desnoyers - * Copyright (C) 2012 David Goulet - * - * SPDX-License-Identifier: GPL-2.0-only - * - */ - -#ifndef CONSUMER_TIMER_H -#define CONSUMER_TIMER_H - -#include - -#include "consumer.h" - -#define LTTNG_CONSUMER_SIG_SWITCH SIGRTMIN + 10 -#define LTTNG_CONSUMER_SIG_TEARDOWN SIGRTMIN + 11 -#define LTTNG_CONSUMER_SIG_LIVE SIGRTMIN + 12 -#define LTTNG_CONSUMER_SIG_MONITOR SIGRTMIN + 13 -#define LTTNG_CONSUMER_SIG_EXIT SIGRTMIN + 14 - -#define CLOCKID CLOCK_MONOTONIC - -/* - * Handle timer teardown race wrt memory free of private data by consumer - * signals are handled by a single thread, which permits a synchronization - * point between handling of each signal. Internal lock ensures mutual - * exclusion. - */ -struct timer_signal_data { - pthread_t tid; /* thread id managing signals */ - int setup_done; - int qs_done; - pthread_mutex_t lock; -}; - -void consumer_timer_switch_start(struct lttng_consumer_channel *channel, - unsigned int switch_timer_interval_us); -void consumer_timer_switch_stop(struct lttng_consumer_channel *channel); -void consumer_timer_live_start(struct lttng_consumer_channel *channel, - unsigned int live_timer_interval_us); -void consumer_timer_live_stop(struct lttng_consumer_channel *channel); -int consumer_timer_monitor_start(struct lttng_consumer_channel *channel, - unsigned int monitor_timer_interval_us); -int consumer_timer_monitor_stop(struct lttng_consumer_channel *channel); -void *consumer_timer_thread(void *data); -int consumer_signal_init(void); - -int consumer_flush_kernel_index(struct lttng_consumer_stream *stream); -int consumer_flush_ust_index(struct lttng_consumer_stream *stream); - -int consumer_timer_thread_get_channel_monitor_pipe(void); -int consumer_timer_thread_set_channel_monitor_pipe(int fd); - -#endif /* CONSUMER_TIMER_H */