gfxSystemLock() and gfxSystemUnlock() are required for correct operation of some modules even under POSIX.

This commit is contained in:
inmarket 2013-07-22 17:06:55 +10:00
parent 25a0115014
commit c40021af01

View File

@ -25,11 +25,11 @@ void _gosInit(void) {
}
void gfxSystemLock(void) {
//gfxMutexEnter(&SystemMutex);
gfxMutexEnter(&SystemMutex);
}
void gfxSystemUnlock(void) {
//gfxMutexLeave(&SystemMutex);
gfxMutexLeave(&SystemMutex);
}
void gfxHalt(const char *msg) {