/* TMError.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. */ #ifndef _TMERROR_H_ #define _TMERROR_H_ #include "Threads.h" #include "Messages.h" #include "TMHal.h" #include "TMScheduler.h" void tmInstallErrorHandlers(void); void tmError(ThreadId currentThread, char* errorString); #endif