git: 9front

Download patch

ref: f65f8427a0544a7f1d04d4a4d33cecc118eb47a5
parent: 638093d431f8c82bf08f40492a161cc1444ebde9
author: cinap_lenrek <cinap_lenrek@localhost>
date: Sun Aug 21 23:04:01 EDT 2011

libthread: reimplemented i/o procs using new interrupt ctl message

--- a/sys/include/thread.h
+++ b/sys/include/thread.h
@@ -128,6 +128,6 @@
 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);
--