diff options
author | inmarket <andrewh@inmarket.com.au> | 2013-07-22 17:06:55 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2013-07-22 17:06:55 +1000 |
commit | c40021af0114218a7754e8c5850b24c077bf1c1d (patch) | |
tree | 3084614d6d13494efde36fe5070ba32e72f8a187 | |
parent | 25a01150144aa713a92c24535e0ed64755f5ea5c (diff) | |
download | uGFX-c40021af0114218a7754e8c5850b24c077bf1c1d.tar.gz uGFX-c40021af0114218a7754e8c5850b24c077bf1c1d.tar.bz2 uGFX-c40021af0114218a7754e8c5850b24c077bf1c1d.zip |
gfxSystemLock() and gfxSystemUnlock() are required for correct operation of some modules even under POSIX.
-rw-r--r-- | src/gos/posix.c | 4 |
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) { |