| 863 | |
| 864 | |
| 865 | Try<Nothing> write( |
| 866 | const string& hierarchy, |
| 867 | const string& cgroup, |
| 868 | const string& control, |
| 869 | const string& value) |
| 870 | { |
| 871 | string path = path::join(hierarchy, cgroup, control); |
| 872 | return os::write(path, value); |
| 873 | } |
| 874 | |
| 875 | |
| 876 | bool exists( |
no test coverage detected