]> git.tdb.fi Git - libs/core.git/blobdiff - source/io/handle.h
Implement controls for file descriptor inheritance
[libs/core.git] / source / io / handle.h
index 44b59371e56ef5262f1e0ba0dd621eb73ef0192a..4b311f545f3212ff8755b7dbbf51c2889991d1b5 100644 (file)
@@ -27,6 +27,13 @@ public:
        operator const void *() const;
 };
 
+
+void sys_set_blocking(Handle &, bool);
+void sys_set_inherit(Handle &, bool);
+unsigned sys_read(Handle &, char *, unsigned);
+unsigned sys_write(Handle &, const char *, unsigned);
+void sys_close(Handle &);
+
 } // namespace IO
 } // namespace Msp