fix: relayd: unaligned access in trace_chunk_registry_ht_key_hash
[lttng-tools.git] / tests / utils / testapp / gen-data-pending / main.cpp
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
12 int 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.034049 seconds and 4 git commands to generate.