aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/gos/posix.c4
1 files changed, 2 insertions, 2 deletions
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) {