Update of /cvsroot/dosemu/dosemu/src/base/dev/pic
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv304/src/base/dev/pic
Modified Files:
pic.c
Log Message:
Next round of serial low-latency work.
- Remove serial_run() from everywhere, add it to a SIGALRM handler. With the
async notifications, that should be enough.
- Remove serial throttling hack - it doesn't play well with the async IO.
- Make sure the ASYNC_LOW_LATENCY flag is set.
Index: pic.c
===================================================================
RCS file: /cvsroot/dosemu/dosemu/src/base/dev/pic/pic.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- pic.c 16 Jan 2004 20:50:27 -0000 1.5
+++ pic.c 31 Jan 2004 11:51:55 -0000 1.6
@@ -806,7 +806,6 @@
if (!test_bit(ilevel,&pic_isr))
break;
- serial_run(); /* delete when moved to timer stuff */
pic_run();
}
pic_sti();
|