2 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * SPDX-License-Identifier: GPL-2.0-only
8 #ifndef LTTNG_COMMON_CONTEXT_H
9 #define LTTNG_COMMON_CONTEXT_H
11 #include <common/macros.h>
14 * Parse string as an application context of the form
15 * "$app.provider_name:context_name" and return the provider name and context
18 * provider_name and ctx_name are returned only if an application context name
19 * was successfully parsed and must be freed by the caller.
21 * Returns 0 if the string is a valid application context, else a negative
24 int parse_application_context(const char *str
, char **provider_name
,
27 #endif /* LTTNG_COMMON_CONTEXT_H */
This page took 0.031096 seconds and 5 git commands to generate.