diff options
author | cinap_lenrek <cinap_lenrek@localhost> | 2011-08-22 03:04:01 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@localhost> | 2011-08-22 03:04:01 +0200 |
commit | c360ea5511b5a21905ae15aba915bf741796cf9e (patch) | |
tree | 6725f61668fb8500781585eda906a6b409cdc6de /sys/include/thread.h | |
parent | 08c39320a46ad94fba9ba3310444f136dd9258f5 (diff) |
libthread: reimplemented i/o procs using new interrupt ctl message
Diffstat (limited to 'sys/include/thread.h')
-rw-r--r-- | sys/include/thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/include/thread.h b/sys/include/thread.h index f67012f77..6fd68b3ed 100644 --- a/sys/include/thread.h +++ b/sys/include/thread.h @@ -128,6 +128,6 @@ long ioread(Ioproc*, int, void*, long); long ioreadn(Ioproc*, int, void*, long); long iowrite(Ioproc*, int, void*, long); int iosleep(Ioproc*, long); +int ioflush(Ioproc*); long iocall(Ioproc*, long (*)(va_list*), ...); -void ioret(Ioproc*, int); |