Commit | Line | Data |
---|---|---|
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 | ||
13 | struct lttng_bytecode; | |
14 | struct lttng_event_expr; | |
15 | ||
16 | LTTNG_HIDDEN | |
17 | int 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 */ |