sessiond: clean-up: remove unused `state` function parameter
[lttng-tools.git] / src / common / credentials.h
... / ...
CommitLineData
1/*
2 * Copyright (C) 2019 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 */
7
8#ifndef LTTNG_CREDENTIALS_H
9#define LTTNG_CREDENTIALS_H
10
11#include <sys/types.h>
12
13struct lttng_credentials {
14 uid_t uid;
15 gid_t gid;
16};
17
18#endif /* LTTNG_CREDENTIALS_H */
This page took 0.023118 seconds and 5 git commands to generate.