From 96baba9fcef3f0395c18b339392f5bded25e3004 Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Tue, 6 May 2025 15:56:38 +0200 Subject: Fix priorities for Mingw builds --- src/threading.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/threading.cpp b/src/threading.cpp index 3435075..483a228 100644 --- a/src/threading.cpp +++ b/src/threading.cpp @@ -336,8 +336,8 @@ static int const gs_prio_remap[] = { // #define _PRIO_MODE SCHED_OTHER #define _PRIO_SCOPE PTHREAD_SCOPE_PROCESS -#define _PRIO_HI 31 -#define _PRIO_0 15 +#define _PRIO_HI 15 +#define _PRIO_0 7 #define _PRIO_LO 1 #else #error "Unknown OS: not implemented!" -- cgit v1.2.3-55-g6feb