mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2025-01-03 14:56:34 -05:00
Update: Corrected thread names
This commit is contained in:
parent
d5ca000284
commit
a167bb41d6
@ -336,8 +336,8 @@ void connection_initialize(void)
|
||||
client_queue_init(&_body_queue);
|
||||
client_queue_init(&_handle_queue);
|
||||
|
||||
client_queue_start_thread(&_request_queue, "request queue", process_request_queue);
|
||||
client_queue_start_thread(&_body_queue, "body queue", process_request_body_queue);
|
||||
client_queue_start_thread(&_request_queue, "Request Queue", process_request_queue);
|
||||
client_queue_start_thread(&_body_queue, "Body Queue", process_request_body_queue);
|
||||
client_queue_start_thread(&_handle_queue, "Client Handler", handle_client_worker);
|
||||
|
||||
_initialized = 1;
|
||||
|
@ -208,7 +208,7 @@ void event_initialise(void) {
|
||||
thread_mutex_unlock(&event_lock);
|
||||
|
||||
/* start thread */
|
||||
event_thread = thread_create("events thread", event_run_thread, NULL, THREAD_ATTACHED);
|
||||
event_thread = thread_create("Events Thread", event_run_thread, NULL, THREAD_ATTACHED);
|
||||
}
|
||||
|
||||
void event_shutdown(void) {
|
||||
|
Loading…
Reference in New Issue
Block a user