From a11f7da53638ee4fe282c7b5725294ca1780f9bf Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Sun, 2 Feb 2014 19:24:43 +0100 Subject: added deinit() routines for all modules (not implemented so far) --- src/gos/raw32.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/gos/raw32.c') diff --git a/src/gos/raw32.c b/src/gos/raw32.c index 5e11064c..61d09761 100644 --- a/src/gos/raw32.c +++ b/src/gos/raw32.c @@ -26,7 +26,8 @@ static void _gosThreadsInit(void); * Initialise *********************************************************/ -void _gosInit(void) { +void _gosInit(void) +{ // Set up the heap allocator _gosHeapInit(); @@ -34,6 +35,11 @@ void _gosInit(void) { _gosThreadsInit(); } +void _gosDeinit(void) +{ + /* ToDo */ +} + /********************************************************* * For WIn32 emulation - automatically add the tick functions * the user would normally have to provide for bare metal. -- cgit v1.2.3