diff options
author | Joel Bodenmann <joel@unormal.org> | 2014-02-02 19:56:05 +0100 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2014-02-02 19:56:05 +0100 |
commit | 9774c86d0e8c171f414eecdf6b1b3f9598986b69 (patch) | |
tree | 69ede6a9893ea9f157719ba2d9dfc84d05e4c588 /src/gos/linux.c | |
parent | d646a43b6eb9e0cfb8abd37cf56344b8f65619a5 (diff) | |
parent | d2de6c351785f323fd4b2a4e337a95bda4c9a626 (diff) | |
download | uGFX-9774c86d0e8c171f414eecdf6b1b3f9598986b69.tar.gz uGFX-9774c86d0e8c171f414eecdf6b1b3f9598986b69.tar.bz2 uGFX-9774c86d0e8c171f414eecdf6b1b3f9598986b69.zip |
Merge branch 'master' into gwin
Diffstat (limited to 'src/gos/linux.c')
-rw-r--r-- | src/gos/linux.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/gos/linux.c b/src/gos/linux.c index 97409364..9b4914d5 100644 --- a/src/gos/linux.c +++ b/src/gos/linux.c @@ -20,10 +20,16 @@ static gfxMutex SystemMutex; -void _gosInit(void) { +void _gosInit(void) +{ gfxMutexInit(&SystemMutex); } +void _gosDeinit(void) +{ + /* ToDo */ +} + void gfxSystemLock(void) { gfxMutexEnter(&SystemMutex); } |