| 1 | /* |
| 2 | * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca> |
| 3 | * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
| 4 | * Copyright (C) 2013 Jérémie Galarneau <jeremie.galarneau@efficios.com> |
| 5 | * |
| 6 | * SPDX-License-Identifier: GPL-2.0-only |
| 7 | * |
| 8 | */ |
| 9 | |
| 10 | #ifndef SESSIOND_UST_DISPATCH_THREAD_H |
| 11 | #define SESSIOND_UST_DISPATCH_THREAD_H |
| 12 | |
| 13 | #include <stdbool.h> |
| 14 | #include "lttng-sessiond.h" |
| 15 | |
| 16 | bool launch_ust_dispatch_thread(struct ust_cmd_queue *cmd_queue, |
| 17 | int apps_cmd_pipe_write_fd, |
| 18 | int apps_cmd_notify_write_fd); |
| 19 | |
| 20 | #endif /* SESSIOND_UST_DISPATCH_THREAD_H */ |