diff options
author | Joel Bodenmann <joel@unormal.org> | 2014-02-02 20:00:34 +0100 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2014-02-02 20:00:34 +0100 |
commit | d299756abaf5813850ec732be3d71d96b9fa32fc (patch) | |
tree | 7133e28e8134af1daaa269785cb2d382d88fe7ba /src/gos/osx.c | |
parent | e50b495c48648bf53621a4afc63682579387ba4f (diff) | |
parent | d2de6c351785f323fd4b2a4e337a95bda4c9a626 (diff) | |
download | uGFX-d299756abaf5813850ec732be3d71d96b9fa32fc.tar.gz uGFX-d299756abaf5813850ec732be3d71d96b9fa32fc.tar.bz2 uGFX-d299756abaf5813850ec732be3d71d96b9fa32fc.zip |
Merge branch 'master' into gfile
Diffstat (limited to 'src/gos/osx.c')
-rw-r--r-- | src/gos/osx.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/gos/osx.c b/src/gos/osx.c index a5560b4e..249147d1 100644 --- a/src/gos/osx.c +++ b/src/gos/osx.c @@ -37,10 +37,16 @@ void get_ticks(mach_timespec_t *mts){ } -void _gosInit(void) { +void _gosInit(void) +{ gfxMutexInit(&SystemMutex); } +void _gosDeinit(void) +{ + /* ToDo */ +} + void gfxSystemLock(void) { gfxMutexEnter(&SystemMutex); } |