aboutsummaryrefslogtreecommitdiffstats
path: root/include/gqueue/gqueue.h
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-12-18 22:11:46 +0100
committerJoel Bodenmann <joel@unormal.org>2013-12-18 22:11:46 +0100
commit5553e3eb54c8445840beae64b8ac3cf368aeba07 (patch)
tree191dae9d092e01b3871afcd649c50bfc61755da0 /include/gqueue/gqueue.h
parent9ab3497c7e1e9462b2c2519d609df17222f485af (diff)
downloaduGFX-5553e3eb54c8445840beae64b8ac3cf368aeba07.tar.gz
uGFX-5553e3eb54c8445840beae64b8ac3cf368aeba07.tar.bz2
uGFX-5553e3eb54c8445840beae64b8ac3cf368aeba07.zip
whitespaces
Diffstat (limited to 'include/gqueue/gqueue.h')
-rw-r--r--include/gqueue/gqueue.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/include/gqueue/gqueue.h b/include/gqueue/gqueue.h
index b590846c..865d7d8c 100644
--- a/include/gqueue/gqueue.h
+++ b/include/gqueue/gqueue.h
@@ -38,17 +38,19 @@
typedef struct gfxQueueASync {
struct gfxQueueASyncItem *head;
struct gfxQueueASyncItem *tail;
- } gfxQueueASync;
+} gfxQueueASync;
+
typedef struct gfxQueueGSync {
struct gfxQueueGSyncItem *head;
struct gfxQueueGSyncItem *tail;
gfxSem sem;
- } gfxQueueGSync;
+} gfxQueueGSync;
+
typedef struct gfxQueueFSync {
struct gfxQueueFSyncItem *head;
struct gfxQueueFSyncItem *tail;
gfxSem sem;
- } gfxQueueFSync;
+} gfxQueueFSync;
/* @} */
/**
@@ -57,14 +59,16 @@ typedef struct gfxQueueFSync {
*/
typedef struct gfxQueueASyncItem {
struct gfxQueueASyncItem *next;
- } gfxQueueASyncItem;
+} gfxQueueASyncItem;
+
typedef struct gfxQueueGSyncItem {
struct gfxQueueGSyncItem *next;
- } gfxQueueGSyncItem;
+} gfxQueueGSyncItem;
+
typedef struct gfxQueueFSyncItem {
struct gfxQueueFSyncItem *next;
gfxSem sem;
- } gfxQueueFSyncItem;
+} gfxQueueFSyncItem;
/* @} */