Clean-up: common: fix -Wshadow error in lttng_daemonize
[lttng-tools.git] / src / common / event-expr-to-bytecode.h
CommitLineData
748b5f7b
SM
1#ifndef SRC_COMMON_EVENT_EXPR_TO_BYTECODE_H
2#define SRC_COMMON_EVENT_EXPR_TO_BYTECODE_H
3
4/*
5 * Copyright 2020 EfficiOS, Inc.
6 *
7 * SPDX-License-Identifier: LGPL-2.1-only
8 *
9 */
10
11#include <common/macros.h>
12
13struct lttng_bytecode;
14struct lttng_event_expr;
15
16LTTNG_HIDDEN
17int lttng_event_expr_to_bytecode (const struct lttng_event_expr *expr,
18 struct lttng_bytecode **bytecode_out);
19
20#endif /* SRC_COMMON_EVENT_EXPR_TO_BYTECODE_H */
This page took 0.022918 seconds and 4 git commands to generate.