Simplify RUNLOOP_CTL_MESSAGE_QUEUE_PULL

This commit is contained in:
twinaphex 2016-12-23 00:00:40 +01:00
parent 77e5cdbfde
commit dd8cae38ad

View File

@ -505,23 +505,18 @@ bool runloop_ctl(enum runloop_ctl_state state, void *data)
case RUNLOOP_CTL_IS_PAUSED: case RUNLOOP_CTL_IS_PAUSED:
return runloop_paused; return runloop_paused;
case RUNLOOP_CTL_MSG_QUEUE_PULL: case RUNLOOP_CTL_MSG_QUEUE_PULL:
#ifdef HAVE_THREADS
slock_lock(_runloop_msg_queue_lock);
#endif
{ {
const char **ret = (const char**)data; const char **ret = (const char**)data;
if (!ret) if (!ret)
{
#ifdef HAVE_THREADS
slock_unlock(_runloop_msg_queue_lock);
#endif
return false; return false;
} #ifdef HAVE_THREADS
slock_lock(_runloop_msg_queue_lock);
#endif
*ret = msg_queue_pull(runloop_msg_queue); *ret = msg_queue_pull(runloop_msg_queue);
}
#ifdef HAVE_THREADS #ifdef HAVE_THREADS
slock_unlock(_runloop_msg_queue_lock); slock_unlock(_runloop_msg_queue_lock);
#endif #endif
}
break; break;
case RUNLOOP_CTL_MSG_QUEUE_DEINIT: case RUNLOOP_CTL_MSG_QUEUE_DEINIT:
if (!runloop_msg_queue) if (!runloop_msg_queue)