aboutsummaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2014-11-27 22:42:34 +0100
committerJoel Bodenmann <joel@unormal.org>2014-11-27 22:42:34 +0100
commitf3d64c62b9308e2799d7ad6c2a165df35ab69324 (patch)
treefae3275cb0b33ff8533d05af44d8ef6abe1aeb0e /demos
parent64fd92ab7dd90eb76aa5e9a660a67619ba1123e3 (diff)
downloaduGFX-f3d64c62b9308e2799d7ad6c2a165df35ab69324.tar.gz
uGFX-f3d64c62b9308e2799d7ad6c2a165df35ab69324.tar.bz2
uGFX-f3d64c62b9308e2799d7ad6c2a165df35ab69324.zip
Cleaning up /demos/modules/gos/threads
Note: use GFILE print implementations here instead!!
Diffstat (limited to 'demos')
-rw-r--r--demos/modules/gos/threads/gfxconf.h1
-rw-r--r--demos/modules/gos/threads/main.c4
2 files changed, 4 insertions, 1 deletions
diff --git a/demos/modules/gos/threads/gfxconf.h b/demos/modules/gos/threads/gfxconf.h
index 4db65532..71a23ac0 100644
--- a/demos/modules/gos/threads/gfxconf.h
+++ b/demos/modules/gos/threads/gfxconf.h
@@ -37,4 +37,3 @@
//#define GFX_USE_OS_OSX FALSE
#endif /* _GFXCONF_H */
-
diff --git a/demos/modules/gos/threads/main.c b/demos/modules/gos/threads/main.c
index b3d8da73..c68fcd18 100644
--- a/demos/modules/gos/threads/main.c
+++ b/demos/modules/gos/threads/main.c
@@ -45,6 +45,8 @@ threadreturn_t Thread1_function(void* param)
printf("Message from Thread 1\r\n");
gfxSleepMilliseconds(500);
}
+
+ return (threadreturn_t)0;
}
/*
@@ -59,6 +61,8 @@ threadreturn_t Thread2_function(void* param)
printf("Message from Thread 2: %s\r\n", (char*)param);
gfxSleepMilliseconds(500);
}
+
+ return (threadreturn_t)0;
}
int main(void)