diff options
author | Keith Packard <keithp@keithp.com> | 2015-09-01 18:51:14 -0700 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2016-07-18 15:27:51 -0400 |
commit | 9d15912aa475b733bbb20efc367a67dacad63bf1 (patch) | |
tree | bdbad787bf5be280df99636b37350158da233a8e /hw/xnest/Handlers.c | |
parent | fb0802113b4c57819cba15d64baf79bf4148607e (diff) |
Remove fd_set from Block/Wakeup handler API
This removes the last uses of fd_set from the server interfaces
outside of the OS layer itself.
Signed-off-by: Keith Packard <keithp@keithp.com>
Reviewed-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'hw/xnest/Handlers.c')
-rw-r--r-- | hw/xnest/Handlers.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xnest/Handlers.c b/hw/xnest/Handlers.c index 05d559d8f..e90a6168f 100644 --- a/hw/xnest/Handlers.c +++ b/hw/xnest/Handlers.c @@ -32,14 +32,14 @@ is" without express or implied warranty. #include "Handlers.h" void -xnestBlockHandler(void *blockData, OSTimePtr pTimeout, void *pReadMask) +xnestBlockHandler(void *blockData, void *timout) { xnestCollectExposures(); XFlush(xnestDisplay); } void -xnestWakeupHandler(void *blockData, int result, void *pReadMask) +xnestWakeupHandler(void *blockData, int result) { xnestCollectEvents(); } |