Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.12-rc6 16 lines 436 B view raw
1#ifndef __CGROUP_HELPERS_H 2#define __CGROUP_HELPERS_H 3#include <errno.h> 4#include <string.h> 5 6#define clean_errno() (errno == 0 ? "None" : strerror(errno)) 7#define log_err(MSG, ...) fprintf(stderr, "(%s:%d: errno: %s) " MSG "\n", \ 8 __FILE__, __LINE__, clean_errno(), ##__VA_ARGS__) 9 10 11int create_and_get_cgroup(char *path); 12int join_cgroup(char *path); 13int setup_cgroup_environment(void); 14void cleanup_cgroup_environment(void); 15 16#endif