aboutsummaryrefslogtreecommitdiffstats
path: root/src/gqueue
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2013-08-01 14:53:13 +1000
committerinmarket <andrewh@inmarket.com.au>2013-08-01 14:53:13 +1000
commit58b52600138435073803de6844b4adb48b501307 (patch)
tree317e72b28edc1e097fce92b1b4eb1f1321e8f169 /src/gqueue
parent9d2b0b667b9bfb2d8b6969ade0ff0bd8d646d7d7 (diff)
downloaduGFX-58b52600138435073803de6844b4adb48b501307.tar.gz
uGFX-58b52600138435073803de6844b4adb48b501307.tar.bz2
uGFX-58b52600138435073803de6844b4adb48b501307.zip
Update some GQUEUE prototypes
Diffstat (limited to 'src/gqueue')
-rw-r--r--src/gqueue/gqueue.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gqueue/gqueue.c b/src/gqueue/gqueue.c
index f73c43df..7a4c0b7e 100644
--- a/src/gqueue/gqueue.c
+++ b/src/gqueue/gqueue.c
@@ -75,7 +75,7 @@
bool_t gfxQueueASyncIsEmpty(gfxQueueASync *pqueue) {
return pqueue->head == NULL;
}
- bool_t gfxQueueASyncIsIn(gfxQueueASync *pqueue, gfxQueueASyncItem *pitem) {
+ bool_t gfxQueueASyncIsIn(gfxQueueASync *pqueue, const gfxQueueASyncItem *pitem) {
gfxQueueASyncItem *pi;
gfxSystemLock();
@@ -156,7 +156,7 @@
bool_t gfxQueueGSyncIsEmpty(gfxQueueGSync *pqueue) {
return pqueue->head == NULL;
}
- bool_t gfxQueueGSyncIsIn(gfxQueueGSync *pqueue, gfxQueueGSyncItem *pitem) {
+ bool_t gfxQueueGSyncIsIn(gfxQueueGSync *pqueue, const gfxQueueGSyncItem *pitem) {
gfxQueueGSyncItem *pi;
gfxSystemLock();
@@ -248,7 +248,7 @@
bool_t gfxQueueFSyncIsEmpty(gfxQueueFSync *pqueue) {
return pqueue->head == NULL;
}
- bool_t gfxQueueFSyncIsIn(gfxQueueFSync *pqueue, gfxQueueFSyncItem *pitem) {
+ bool_t gfxQueueFSyncIsIn(gfxQueueFSync *pqueue, const gfxQueueFSyncItem *pitem) {
gfxQueueASyncItem *pi;
gfxSystemLock();