Fix: sessiond: erroneous error code returned on rotation failure
[lttng-tools.git] / src / bin / lttng-sessiond / notify-apps.h
CommitLineData
d0b96690 1/*
ab5be9fa 2 * Copyright (C) 2013 David Goulet <dgoulet@efficios.com>
d0b96690 3 *
ab5be9fa 4 * SPDX-License-Identifier: GPL-2.0-only
d0b96690 5 *
d0b96690
DG
6 */
7
8#ifndef UST_THREAD_H
9#define UST_THREAD_H
10
11#ifdef HAVE_LIBLTTNG_UST_CTL
12
971a61c6 13bool launch_application_notification_thread(int apps_cmd_notify_pipe_read_fd);
d0b96690
DG
14
15#else /* HAVE_LIBLTTNG_UST_CTL */
16
be70a01b 17static
971a61c6 18bool launch_application_notification_thread(int apps_cmd_notify_pipe_read_fd)
d0b96690 19{
971a61c6 20 return true;
d0b96690
DG
21}
22
23#endif /* HAVE_LIBLTTNG_UST_CTL */
24
25#endif /* UST_THREAD_H */
This page took 0.049685 seconds and 4 git commands to generate.