diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-04-06 21:53:02 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-04-06 21:53:02 +0200 |
commit | 3a0ecb08f4b3bfa84ff3d04bc7816730df35139e (patch) | |
tree | 6cb44bd45ec986f75dd6913695be7d235a6db5f9 /util.h | |
parent | 7418040c3ada8c57c436b2a2ff44fb490f6781f7 (diff) |
util: implement fd_nonbloc()/fd_cloexec()
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -172,6 +172,9 @@ bool ignore_file(const char *filename); struct __useless_struct_to_allow_trailing_semicolon__ +int fd_nonblock(int fd, bool nonblock); +int fd_cloexec(int fd, bool cloexec); + const char *ioprio_class_to_string(int i); int ioprio_class_from_string(const char *s); |