This commit is contained in:
twinaphex 2016-05-08 05:21:31 +02:00
parent 5c269d38a1
commit 7e9eb5b6c4
2 changed files with 2 additions and 2 deletions

View File

@ -155,7 +155,7 @@ void runloop_msg_queue_push(const char *msg,
} }
char* runloop_msg_queue_pull() char* runloop_msg_queue_pull(void)
{ {
runloop_ctx_msg_info_t msg_info; runloop_ctx_msg_info_t msg_info;
runloop_ctl(RUNLOOP_CTL_MSG_QUEUE_PULL, &msg_info); runloop_ctl(RUNLOOP_CTL_MSG_QUEUE_PULL, &msg_info);

View File

@ -324,7 +324,7 @@ int runloop_iterate(unsigned *sleep_ms);
void runloop_msg_queue_push(const char *msg, unsigned prio, void runloop_msg_queue_push(const char *msg, unsigned prio,
unsigned duration, bool flush); unsigned duration, bool flush);
char* runloop_msg_queue_pull(); char* runloop_msg_queue_pull(void);
bool runloop_ctl(enum runloop_ctl_state state, void *data); bool runloop_ctl(enum runloop_ctl_state state, void *data);