1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
/* SPDX-License-Identifier: LGPL-2.1-only */
/**
* Copyright IBM Corporation. 2007
*
* Author: Balbir Singh <balbir@linux.vnet.ibm.com>
*/
#ifndef _LIBCGROUP_H
#define _LIBCGROUP_H
#define _LIBCGROUP_H_INSIDE
#include <libcgroup/error.h>
#include <libcgroup/init.h>
#include <libcgroup/iterators.h>
#include <libcgroup/groups.h>
#include <libcgroup/tasks.h>
#include <libcgroup/config.h>
#include <libcgroup/log.h>
#include <libcgroup/tools.h>
#include <libcgroup/systemd.h>
#undef _LIBCGROUP_H_INSIDE
/*! \mainpage libcgroup
*
* \section intro_sec Introduction
*
* @c libcgroup is a library that abstracts the control group file system in Linux.
* It comes with various command-line tools and configuration files, see
* their man pages for details.
*
* This documentation provides description of @c libcgroup API. Read following
* sections, preferably in this order:
* -# @ref group_init "Initialization"
* -# @ref group_groups "Control Groups"
* -# @ref group_iterators "Iterators"
* -# @ref group_tasks "Manipulation with tasks"
* -# @ref group_config "Configuration"
* -# @ref group_errors "Error Handling"
*/
#endif /* _LIBCGROUP_H */
|