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 v5.6-rc6 29 lines 625 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __CGROUP_H__ 3#define __CGROUP_H__ 4 5#include <linux/refcount.h> 6 7struct option; 8 9struct cgroup { 10 char *name; 11 int fd; 12 refcount_t refcnt; 13}; 14 15 16extern int nr_cgroups; /* number of explicit cgroups defined */ 17 18struct cgroup *cgroup__get(struct cgroup *cgroup); 19void cgroup__put(struct cgroup *cgroup); 20 21struct evlist; 22 23struct cgroup *evlist__findnew_cgroup(struct evlist *evlist, const char *name); 24 25void evlist__set_default_cgroup(struct evlist *evlist, struct cgroup *cgroup); 26 27int parse_cgroups(const struct option *opt, const char *str, int unset); 28 29#endif /* __CGROUP_H__ */