gfxSystemLock() and gfxSystemUnlock() are required for correct operation of some modules even under POSIX.
This commit is contained in:
parent
25a0115014
commit
c40021af01
1 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue