mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 19:20:24 +00:00
Simplify RUNLOOP_CTL_MESSAGE_QUEUE_PULL
This commit is contained in:
parent
77e5cdbfde
commit
dd8cae38ad
13
runloop.c
13
runloop.c
@ -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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user