aboutsummaryrefslogtreecommitdiffstats
path: root/src/gos
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2014-05-10 18:50:15 +0200
committerJoel Bodenmann <joel@unormal.org>2014-05-10 18:50:15 +0200
commit2632bb1ed5a3e362ad440d7a1a663911ce2bbcae (patch)
treef3d4bf3979f9008c56a55eed7d3b21fbe0c43ecb /src/gos
parent1478fdf41e3731cafacd22ff6f530fb724c02df3 (diff)
downloaduGFX-2632bb1ed5a3e362ad440d7a1a663911ce2bbcae.tar.gz
uGFX-2632bb1ed5a3e362ad440d7a1a663911ce2bbcae.tar.bz2
uGFX-2632bb1ed5a3e362ad440d7a1a663911ce2bbcae.zip
doxygen cleanup
Diffstat (limited to 'src/gos')
-rw-r--r--src/gos/chibios.c6
-rw-r--r--src/gos/chibios.h6
-rw-r--r--src/gos/linux.c6
-rw-r--r--src/gos/linux.h5
-rw-r--r--src/gos/osx.c6
-rw-r--r--src/gos/osx.h7
-rw-r--r--src/gos/raw32.c5
-rw-r--r--src/gos/raw32.h6
8 files changed, 0 insertions, 47 deletions
diff --git a/src/gos/chibios.c b/src/gos/chibios.c
index 2254f52f..468c012c 100644
--- a/src/gos/chibios.c
+++ b/src/gos/chibios.c
@@ -5,11 +5,6 @@
* http://ugfx.org/license.html
*/
-/**
- * @file src/gos/chibios.c
- * @brief GOS ChibiOS Operating System support.
- * @details Supports both, ChibiOS/RT 2.x and 3.x
- */
#include "gfx.h"
#if GFX_USE_OS_CHIBIOS
@@ -168,4 +163,3 @@ gfxThreadHandle gfxThreadCreate(void *stackarea, size_t stacksz, threadpriority_
}
#endif /* GFX_USE_OS_CHIBIOS */
-/** @} */
diff --git a/src/gos/chibios.h b/src/gos/chibios.h
index 9f7f5e37..e0b95707 100644
--- a/src/gos/chibios.h
+++ b/src/gos/chibios.h
@@ -5,12 +5,6 @@
* http://ugfx.org/license.html
*/
-/**
- * @file src/gos/chibios.h
- * @brief GOS - Operating System Support header file for ChibiOS.
- * @details Supports both, ChibiOS/RT 2.x and 3.x
- */
-
#ifndef _GOS_CHIBIOS_H
#define _GOS_CHIBIOS_H
diff --git a/src/gos/linux.c b/src/gos/linux.c
index 9b4914d5..d127fbe1 100644
--- a/src/gos/linux.c
+++ b/src/gos/linux.c
@@ -5,10 +5,6 @@
* http://ugfx.org/license.html
*/
-/**
- * @file src/gos/linux.c
- * @brief GOS ChibiOS Operating System support.
- */
#include "gfx.h"
#if GFX_USE_OS_LINUX
@@ -197,5 +193,3 @@ semcount_t gfxSemCounter(gfxSem *pSem) {
}
#endif /* GFX_USE_OS_LINUX */
-/** @} */
-
diff --git a/src/gos/linux.h b/src/gos/linux.h
index 9dd054da..9ead9c0e 100644
--- a/src/gos/linux.h
+++ b/src/gos/linux.h
@@ -5,11 +5,6 @@
* http://ugfx.org/license.html
*/
-/**
- * @file src/gos/linux.h
- * @brief GOS - Operating System Support header file for LINUX.
- */
-
#ifndef _GOS_LINUX_H
#define _GOS_LINUX_H
diff --git a/src/gos/osx.c b/src/gos/osx.c
index 249147d1..dccd49c9 100644
--- a/src/gos/osx.c
+++ b/src/gos/osx.c
@@ -5,10 +5,6 @@
* http://ugfx.org/license.html
*/
-/**
- * @file src/gos/osx.c
- * @brief GOS ChibiOS Operating System support.
- */
#include "gfx.h"
#if GFX_USE_OS_OSX
@@ -193,5 +189,3 @@ semcount_t gfxSemCounter(gfxSem *pSem) {
}
#endif /* GFX_USE_OS_OSX */
-/** @} */
-
diff --git a/src/gos/osx.h b/src/gos/osx.h
index f01f4424..635a8934 100644
--- a/src/gos/osx.h
+++ b/src/gos/osx.h
@@ -5,11 +5,6 @@
* http://ugfx.org/license.html
*/
-/**
- * @file src/gos/osx.h
- * @brief GOS - Operating System Support header file for Mac OS-X.
- */
-
#ifndef _GOS_OSX_H
#define _GOS_OSX_H
@@ -90,6 +85,4 @@ threadreturn_t gfxThreadWait(gfxThreadHandle thread);
#endif
#endif /* GFX_USE_OS_OSX */
-
#endif /* _GOS_OSX_H */
-
diff --git a/src/gos/raw32.c b/src/gos/raw32.c
index 2fdfdf68..c75342d4 100644
--- a/src/gos/raw32.c
+++ b/src/gos/raw32.c
@@ -5,10 +5,6 @@
* http://ugfx.org/license.html
*/
-/**
- * @file src/gos/raw32.c
- * @brief GOS Raw (bare metal) support.
- */
#include "gfx.h"
#if GFX_USE_OS_RAW32
@@ -735,4 +731,3 @@ threadreturn_t gfxThreadWait(gfxThreadHandle th) {
}
#endif /* GFX_USE_OS_RAW32 */
-
diff --git a/src/gos/raw32.h b/src/gos/raw32.h
index 9a4beb7f..6eb5f26e 100644
--- a/src/gos/raw32.h
+++ b/src/gos/raw32.h
@@ -6,11 +6,6 @@
*/
/**
- * @file src/gos/raw32.h
- * @brief GOS - Operating System Support header file for any 32 bit processor in bare-metal mode
- */
-
-/**
* The raw32 GOS implementation supports any 32 bit processor with or without an
* underlying operating system. It uses cooperative multi-tasking. Be careful
* when writing device drivers not to disturb the assumptions this creates by performing
@@ -123,4 +118,3 @@ extern "C" {
#endif /* GFX_USE_OS_RAW32 */
#endif /* _GOS_RAW32_H */
-