00001 // EPOS-- Thread Abstraction Initialization 00002 00003 // This work is licensed under the Creative Commons 00004 // Attribution-NonCommercial-NoDerivs License. To view a copy of this license, 00005 // visit http://creativecommons.org/licenses/by-nc-nd/2.0/ or send a letter to 00006 // Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. 00007 00008 #include <thread.h> 00009 #include <alarm.h> 00010 #include <system/kmalloc.h> 00011 00012 __BEGIN_SYS 00013 00014 int Thread::init(System_Info * si) { 00015 Scheduler::init(si); 00016 } 00017 00018 __END_SYS