]> Git Repo - qemu.git/blobdiff - thread-pool.c
target-arm: Add SPSR entries for EL2/HYP and EL3/MON
[qemu.git] / thread-pool.c
index 50255678172f7a161ad2793278fb7db480e805f6..fbdd3ffa3aeab3e88daecce0411b9724b564f6a9 100644 (file)
@@ -23,6 +23,7 @@
 #include "block/block_int.h"
 #include "qemu/event_notifier.h"
 #include "block/thread-pool.h"
+#include "qemu/main-loop.h"
 
 static void do_spawn_thread(ThreadPool *pool);
 
@@ -139,7 +140,7 @@ static void do_spawn_thread(ThreadPool *pool)
     pool->new_threads--;
     pool->pending_threads++;
 
-    qemu_thread_create(&t, worker_thread, pool, QEMU_THREAD_DETACHED);
+    qemu_thread_create(&t, "worker", worker_thread, pool, QEMU_THREAD_DETACHED);
 }
 
 static void spawn_thread_bh_fn(void *opaque)
This page took 0.020951 seconds and 4 git commands to generate.