/* TMTime.h, Copyright (c) by , 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. */ /* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. File: $Source: /usr/drwho/vault/cvs/topsy/Topsy/Threads/TMTime.h,v $ Author(s): Affiliation: ETH Zuerich, TIK Version: $Revision: 1.2 $ Creation Date: Last Date of Change: $Date: 1999/12/13 21:48:34 $ by: $Author: ruf $ $Log: TMTime.h,v $ Revision 1.2 1999/12/13 21:48:34 ruf GNU General Public Licence Update Revision 1.1 1998/10/19 08:15:53 topsy Initial revision */ #ifndef __TMTIME_H #define __TMTIME_H void tmTimeUpdate(); void tmTimeInit(); Error tmTimeGet(unsigned long* seconds, unsigned long* microSeconds); Error tmTimeSet(unsigned long seconds, unsigned long microSeconds); #endif __TMTIME_H