summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2016-08-11 21:32:59 -0700
committerKeith Packard <keithp@keithp.com>2016-08-11 21:55:06 -0700
commit2b9f8ae98602d2abda7c363900f39a5bd3768a4c (patch)
treea58755c12d4baa8fb8760c96fe17126d85fa34fc
parentf399919e13c994452f7219163b2a4b1fa015242e (diff)
mi: Remove spurious call to OsReleaseSignals from mieqGrowQueue
This call wasn't converted to 'input_unlock()' when the SIGIO code was removed from the server, and so when the queue growing was reworked to be done from the input thread, it got left sitting here. As the caller now manages the lock, we don't need to switch this to input_unlock at this point. Signed-off-by: Keith Packard <keithp@keithp.com> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r--mi/mieq.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/mi/mieq.c b/mi/mieq.c
index 05447d647..e31e4f125 100644
--- a/mi/mieq.c
+++ b/mi/mieq.c
@@ -160,7 +160,6 @@ mieqGrowQueue(EventQueuePtr eventQueue, size_t new_nevents)
for (j = 0; j < i; j++)
FreeEventList(new_events[j].events, 1);
free(new_events);
- OsReleaseSignals();
return FALSE;
}
new_events[i].events = evlist;