aboutsummaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/debug.h4
-rw-r--r--src/include/heap.h2
-rw-r--r--src/include/scheduler.h2
-rw-r--r--src/include/vt.h2
4 files changed, 5 insertions, 5 deletions
diff --git a/src/include/debug.h b/src/include/debug.h
index 631882fad..71a2613eb 100644
--- a/src/include/debug.h
+++ b/src/include/debug.h
@@ -62,7 +62,7 @@ extern char *dbglastmsg;
#ifdef __cplusplus
extern "C" {
#endif
- void chDbgInit(void);
+ void debug_init(void);
void chDbgPanic(char *msg);
#ifdef __cplusplus
}
@@ -83,7 +83,7 @@ extern "C" {
#else /* !CH_USE_DEBUG */
-#define chDbgInit()
+#define debug_init()
#define chDbgPanic(msg) {}
#define chDbgAssert(c, m) {(void)(c);}
diff --git a/src/include/heap.h b/src/include/heap.h
index b303fde1a..b8633f5cf 100644
--- a/src/include/heap.h
+++ b/src/include/heap.h
@@ -28,7 +28,7 @@
#ifdef __cplusplus
extern "C" {
#endif
- void chHeapInit(void);
+ void heap_init(void);
void *chHeapAlloc(size_t size);
void chHeapFree(void *p);
size_t chHeapStatus(size_t *sizep);
diff --git a/src/include/scheduler.h b/src/include/scheduler.h
index fde23a0ce..3d2f46e5e 100644
--- a/src/include/scheduler.h
+++ b/src/include/scheduler.h
@@ -75,7 +75,7 @@ extern ReadyList rlist;
#ifdef __cplusplus
extern "C" {
#endif
- void chSchInit(void);
+ void scheduler_init(void);
Thread *chSchReadyI(Thread *tp);
void chSchGoSleepS(tstate_t newstate);
msg_t chSchGoSleepTimeoutS(tstate_t newstate, systime_t time);
diff --git a/src/include/vt.h b/src/include/vt.h
index 73f2881a3..1e718da3a 100644
--- a/src/include/vt.h
+++ b/src/include/vt.h
@@ -99,7 +99,7 @@ extern VTList vtlist;
#ifdef __cplusplus
extern "C" {
#endif
- void chVTInit(void);
+ void vt_init(void);
void chVTSetI(VirtualTimer *vtp, systime_t time, vtfunc_t vtfunc, void *par);
void chVTResetI(VirtualTimer *vtp);
bool_t chSysInTimeWindow(systime_t start, systime_t end);