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

ugfx_release_2.6
inmarket 2013-07-22 17:06:55 +10:00
parent 25a0115014
commit c40021af01
1 changed files with 2 additions and 2 deletions

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) {