diff --git a/src/gos/posix.c b/src/gos/posix.c index 9d227fb4..49fcdea4 100644 --- a/src/gos/posix.c +++ b/src/gos/posix.c @@ -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) {