Alexandre Julliard (@julliard) commented about server/thread.c:
};
static struct list thread_list = LIST_INIT(thread_list); +#ifdef __linux__ +static int nice_limit; +#endif
+void init_threading(void) +{ +#ifdef __linux__ +#ifdef RLIMIT_NICE
Please avoid unnecessary #ifdefs.