/* IOMain.h, Copyright (c) by George Fankhauser, Swiss Federal Institute of Technology, Computer Engineering and Networks Laboratory. TOPSY -- A Teachable Operating System. Implementation of a tiny and simple micro kernel for teaching purposes. For further information, please visit http://www.tik.ee.ethz.ch/~topsy This software is provided under the terms of the GNU General Public Licence. A full copy of the GNU GPL is provided in the file COPYING found in the development root of Topsy. */ /* File: $Source: /usr/drwho/vault/cvs/topsy/Topsy/IO/IOMain.h,v $ Author(s): George Fankhauser Affiliation: ETH Zuerich, TIK Version: $Revision: 1.13 $ Creation Date: Last Date of Change: $Date: 1999/12/13 21:48:25 $ by: $Author: ruf $ $Log: IOMain.h,v $ Revision 1.13 1999/12/13 21:48:25 ruf GNU General Public Licence Update Revision 1.12 1999/04/08 11:40:08 jeker added some new files, modified some others for unix port Revision 1.11 1999/01/06 17:47:34 cjeker code cleaning Revision 1.10 1998/03/31 16:41:35 gries include intel8254.h added Revision 1.9 1997/05/30 18:02:53 gfa added loopback device * Revision 1.8 1997/05/07 14:15:11 stauffer * FPGA_Comm.h added * * Revision 1.7 1997/04/07 13:26:45 gfa * adapted calls for framework * * Revision 1.6 97/04/06 18:58:20 gfa * source cleanup * * Revision 1.5 1997/03/16 22:15:30 gfa * *** empty log message *** * * Revision 1.4 1997/02/24 07:39:20 gfa * *** empty log message *** * * Revision 1.3 1997/02/13 15:46:18 conrad * First compilation/linking of complete environment (all modules) * * Revision 1.2 1997/02/12 15:30:58 gfa * full interface defined, msg handler first version * * Revision 1.1 1997/02/11 17:13:29 gfa * Initial revision * * Revision 1.1 1997/02/04 11:20:45 topsy * Initial revision * */ #ifndef _IOMAIN_H_ #define _IOMAIN_H_ #include "IO.h" #include "IODevice.h" #include "HashList.h" #include "Threads.h" void ioMain(ThreadArg arg); #endif