diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-08-23 00:37:35 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-08-23 00:37:35 +0200 |
commit | 0c85a4f3efa2883c414ed8ff59aea263b85b7687 (patch) | |
tree | a033245a65239971a0b034f14a1a1bfd39bc2c92 /src/strv.h | |
parent | c5f0532ff10abcf6808ff503fb10ca9f4df81efd (diff) |
cgroup: optionally mount a specific cgroup controllers together, and add cpu+cpuacct to the default
Diffstat (limited to 'src/strv.h')
-rw-r--r-- | src/strv.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/strv.h b/src/strv.h index 46436a52d9..d038c9f3b1 100644 --- a/src/strv.h +++ b/src/strv.h @@ -68,6 +68,8 @@ char **strv_env_clean(char **l); char **strv_parse_nulstr(const char *s, size_t l); +bool strv_overlap(char **a, char **b); + #define STRV_FOREACH(s, l) \ for ((s) = (l); (s) && *(s); (s)++) |