Fix: sessiond: crash when sending data_pending to an active session
[lttng-tools.git] / tests / utils / testapp / gen-data-pending / main.cpp
CommitLineData
f0a9c004
KS
1/*
2 * SPDX-FileCopyrightText: 2023 Kienan Stewart <kstewart@efficios.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 */
7
8#include <lttng/lttng.h>
9
10#include <assert.h>
11
12int main(int argc, const char **argv)
13{
14 assert(argc >= 2);
15 lttng_data_pending(argv[1]);
16 return 0;
17}
This page took 0.023414 seconds and 4 git commands to generate.