From 36deb792c105ce4900870abe69da77393ce7a692 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Tue, 3 Feb 2009 16:13:59 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@714 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- src/chsys.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/chsys.c') diff --git a/src/chsys.c b/src/chsys.c index 1629796dd..807e2590f 100644 --- a/src/chsys.c +++ b/src/chsys.c @@ -57,17 +57,17 @@ void chSysInit(void) { static Thread mainthread; port_init(); - chSchInit(); - chDbgInit(); - chVTInit(); + scheduler_init(); + debug_init(); + vt_init(); #ifdef CH_USE_HEAP - chHeapInit(); + heap_init(); #endif + /* * Now this instructions flow becomes the main thread. */ (currp = init_thread(&mainthread, NORMALPRIO))->p_state = PRCURR; - chSysEnable(); /* -- cgit v1.2.3