diff options
Diffstat (limited to 'src/cgroup-show.h')
-rw-r--r-- | src/cgroup-show.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/cgroup-show.h b/src/cgroup-show.h index ae5b13b564..992e17b986 100644 --- a/src/cgroup-show.h +++ b/src/cgroup-show.h @@ -22,7 +22,9 @@ along with systemd; If not, see <http://www.gnu.org/licenses/>. ***/ -int show_cgroup_by_path(const char *path, const char *prefix, unsigned columns); -int show_cgroup(const char *controller, const char *path, const char *prefix, unsigned columns); +#include <stdbool.h> + +int show_cgroup_by_path(const char *path, const char *prefix, unsigned columns, bool kernel_threads); +int show_cgroup(const char *controller, const char *path, const char *prefix, unsigned columns, bool kernel_threads); #endif |