util/u_queue: always enable UTIL_QUEUE_INIT_SCALE_THREADS, remove the flag

It means that threads are created on demand except for the first one.
It reduces process startup time.

Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24173>
This commit is contained in:
Marek Olšák
2023-07-16 03:44:53 -04:00
parent bfdfe5aa82
commit 4b93ae7e7a
5 changed files with 7 additions and 10 deletions
+1 -1
View File
@@ -50,7 +50,6 @@ extern "C" {
#define UTIL_QUEUE_INIT_USE_MINIMUM_PRIORITY (1 << 0)
#define UTIL_QUEUE_INIT_RESIZE_IF_FULL (1 << 1)
#define UTIL_QUEUE_INIT_SET_FULL_THREAD_AFFINITY (1 << 2)
#define UTIL_QUEUE_INIT_SCALE_THREADS (1 << 3)
#if UTIL_FUTEX_SUPPORTED
#define UTIL_QUEUE_FENCE_FUTEX
@@ -206,6 +205,7 @@ struct util_queue_job {
struct util_queue {
char name[14]; /* 13 characters = the thread name without the index */
mtx_t lock;
bool create_threads_on_demand;
cnd_t has_queued_cond;
cnd_t has_space_cond;
thrd_t *threads;