mirror of git://git.musl-libc.org/musl
fix CPU_EQUAL macro in sched.h
This commit is contained in:
parent
b04971d91a
commit
d146d4dc11
|
@ -123,7 +123,7 @@ __CPU_op_func_S(XOR, ^)
|
||||||
#define CPU_XOR(d,s1,s2) CPU_XOR_S(sizeof(cpu_set_t),d,s1,s2)
|
#define CPU_XOR(d,s1,s2) CPU_XOR_S(sizeof(cpu_set_t),d,s1,s2)
|
||||||
#define CPU_COUNT(set) CPU_COUNT_S(sizeof(cpu_set_t),set)
|
#define CPU_COUNT(set) CPU_COUNT_S(sizeof(cpu_set_t),set)
|
||||||
#define CPU_ZERO(set) CPU_ZERO_S(sizeof(cpu_set_t),set)
|
#define CPU_ZERO(set) CPU_ZERO_S(sizeof(cpu_set_t),set)
|
||||||
#define CPU_EQUAL(set) CPU_EQUAL_S(sizeof(cpu_set_t),set)
|
#define CPU_EQUAL(s1,s2) CPU_EQUAL_S(sizeof(cpu_set_t),s1,s2)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue