FS-3553 --resolve

This commit is contained in:
Jeff Lenk
2011-11-16 16:00:14 -06:00
parent 189e0161c9
commit b992e29640
2 changed files with 7 additions and 3 deletions

View File

@@ -85,14 +85,18 @@ SWITCH_DECLARE(int) EventConsumer::bind(const char *event_name, const char *subc
}
SWITCH_DECLARE(Event *) EventConsumer::pop(int block)
SWITCH_DECLARE(Event *) EventConsumer::pop(int block, int timeout)
{
void *pop = NULL;
Event *ret = NULL;
switch_event_t *event;
if (block) {
switch_queue_pop(events, &pop);
if (timeout > 0) {
switch_queue_pop_timeout(events, &pop, (switch_interval_time_t) timeout * 1000); // millisec rather than microsec
} else {
switch_queue_pop(events, &pop);
}
} else {
switch_queue_trypop(events, &pop);
}