aboutsummaryrefslogtreecommitdiffstats
path: root/src/chsys.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/chsys.c')
-rw-r--r--src/chsys.c10
1 files changed, 5 insertions, 5 deletions
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();
/*