aboutsummaryrefslogtreecommitdiffstats
path: root/include/gqueue/gqueue.h
diff options
context:
space:
mode:
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;
/* @} */