aboutsummaryrefslogtreecommitdiffstats
path: root/src/gqueue/gqueue.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gqueue/gqueue.h')
-rw-r--r--src/gqueue/gqueue.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gqueue/gqueue.h b/src/gqueue/gqueue.h
index a62f8775..74e96654 100644
--- a/src/gqueue/gqueue.h
+++ b/src/gqueue/gqueue.h
@@ -43,7 +43,7 @@ typedef struct gfxQueueASyncItem {
typedef struct gfxQueueFSyncItem {
struct gfxQueueFSyncItem *next;
- gfxSem sem;
+ gSem sem;
} gfxQueueFSyncItem;
/** @} */
@@ -59,13 +59,13 @@ typedef struct gfxQueueASync {
typedef struct gfxQueueGSync {
gfxQueueGSyncItem *head;
gfxQueueGSyncItem *tail;
- gfxSem sem;
+ gSem sem;
} gfxQueueGSync;
typedef struct gfxQueueFSync {
gfxQueueFSyncItem *head;
gfxQueueFSyncItem *tail;
- gfxSem sem;
+ gSem sem;
} gfxQueueFSync;
/** @} */