event: Remove "priority" concept.

It was replaced by the "child queue" concept (MultiQueue).
This commit is contained in:
Justin M. Keyes
2017-04-27 14:38:41 +02:00
parent f17a818519
commit 8f59d14839
8 changed files with 11 additions and 45 deletions

View File

@@ -604,7 +604,7 @@ void msg_schedule_emsgf(const char *const fmt, ...)
va_end(ap);
char *s = xstrdup((char *)IObuff);
loop_schedule(&main_loop, event_create(1, msg_emsgf_event, 1, s));
loop_schedule(&main_loop, event_create(msg_emsgf_event, 1, s));
}
/*