File: get_setup_mode.c

package info (click to toggle)
libcgroup 3.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,764 kB
  • sloc: ansic: 14,997; cpp: 9,957; python: 8,340; sh: 5,194; yacc: 470; makefile: 400; lex: 38
file content (44 lines) | stat: -rw-r--r-- 850 bytes parent folder | download
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
44
// SPDX-License-Identifier: LGPL-2.1-only
/*
 * Copyright (c) 2023 Oracle and/or its affiliates
 *
 * Author: Kamalesh Babulal <kamalesh.babulal@oracle.com>
 *
 * Description: This file contains the sample code to demonstrate usage of
 * 		cgroup_setup_mode() API.
 */

#include <stdio.h>
#include <stdlib.h>

#include <libcgroup.h>

int main(void)
{
	enum cg_setup_mode_t setup_mode;
	int ret;

	ret = cgroup_init();
	if (ret) {
		printf("cgroup_init failed with %s\n", cgroup_strerror(ret));
		exit(1);
	}

	setup_mode = cgroup_setup_mode();
	switch(setup_mode) {
	case CGROUP_MODE_LEGACY:
		printf("cgroup mode: Legacy\n");
		break;
	case CGROUP_MODE_HYBRID:
		printf("cgroup mode: Hybrid\n");
		break;
	case CGROUP_MODE_UNIFIED:
		printf("cgroup mode: Unified\n");
		break;
	default:
		printf("cgroup mode: Unknown\n");
		break;
	}

	return 0;
}