aboutsummaryrefslogtreecommitdiffstats
path: root/src/gevent/gevent.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gevent/gevent.h')
-rw-r--r--src/gevent/gevent.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gevent/gevent.h b/src/gevent/gevent.h
index 4e8dacec..d499ee32 100644
--- a/src/gevent/gevent.h
+++ b/src/gevent/gevent.h
@@ -55,8 +55,8 @@ typedef void (*GEventCallbackFn)(void *param, GEvent *pe);
// The Listener Object
typedef struct GListener {
- gfxSem waitqueue; // Private: Semaphore for the listener to wait on.
- gU16 flags; // Private: Flags for operation
+ gSem waitqueue; // Private: Semaphore for the listener to wait on.
+ gU16 flags; // Private: Flags for operation
GEventCallbackFn callback; // Private: Call back Function
void *param; // Private: Parameter for the callback function.
GEvent event; // Public: The event object into which the event information is stored.