]> git.proxmox.com Git - mirror_lxcfs.git/blob - src/cpuset_parse.h
meson: Cleanup build files
[mirror_lxcfs.git] / src / cpuset_parse.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #ifndef __LXCFS_CPUSET_PARSE_H
4 #define __LXCFS_CPUSET_PARSE_H
5
6 #include "config.h"
7
8 #include <stdbool.h>
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include <sys/stat.h>
12 #include <sys/types.h>
13 #include <unistd.h>
14
15 #include "macro.h"
16
17 extern bool cpu_in_cpuset(int cpu, const char *cpuset);
18 extern int cpu_number_in_cpuset(const char *cpuset);
19 extern char *get_cpuset(const char *cg);
20
21 #endif /* __LXCFS_CPUSET_PARSE_H */
22
23