Init/shutdown mutex

This commit is contained in:
Henrik Rydgård 2012-12-23 11:19:55 +01:00
parent 862a11e7be
commit 4a4d126dc7
3 changed files with 14 additions and 2 deletions

View file

@ -77,6 +77,7 @@ void __KernelInit()
__KernelMemoryInit();
__KernelThreadingInit();
__KernelMutexInit();
__IoInit();
__AudioInit();
__SasInit();
@ -115,6 +116,7 @@ void __KernelShutdown()
__IoShutdown();
__InterruptsShutdown();
__KernelThreadingShutdown();
__KernelMutexShutdown();
__KernelMemoryShutdown();
CoreTiming::ClearPendingEvents();