From: Rich Felker Date: Thu, 23 Feb 2023 15:10:44 +0000 (-0500) Subject: fix incorrect unit for CPU_SETSIZE macro X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=bc695a5ac1d7929e5c1ad5297eb47e146cccd157;hp=7d756e1c04de6eb3f2b3d3e1141a218bb329fcfb;p=musl fix incorrect unit for CPU_SETSIZE macro this macro is supposed to reflect the number of members (bits) in cpu_set_t, not the storage size (bytes). --- diff --git a/include/sched.h b/include/sched.h index fda4b484..204c34f5 100644 --- a/include/sched.h +++ b/include/sched.h @@ -124,7 +124,7 @@ __CPU_op_func_S(XOR, ^) #define CPU_ALLOC(n) ((cpu_set_t *)calloc(1,CPU_ALLOC_SIZE(n))) #define CPU_FREE(set) free(set) -#define CPU_SETSIZE 128 +#define CPU_SETSIZE 1024 #define CPU_SET(i, set) CPU_SET_S(i,sizeof(cpu_set_t),set) #define CPU_CLR(i, set) CPU_CLR_S(i,sizeof(cpu_set_t),set)