sys/cpuset.h: fix macro definition
The _s parameter was missing in the paramater list. Reported by: gljennjohn at gmail.com (Gary Jennejohn)
This commit is contained in:
parent
58101517cb
commit
5650d340ad
@ -90,7 +90,7 @@
|
||||
#define CPU_XOR_S(_s, d, s1, s2) __BIT_XOR2(_s, d, s1, s2)
|
||||
|
||||
#define CPU_COUNT_S(_s, p) ((int)__BIT_COUNT(_s, p))
|
||||
#define CPU_EQUAL_S(p, c) (__BIT_CMP(_s, p, c) == 0)
|
||||
#define CPU_EQUAL_S(_s, p, c) (__BIT_CMP(_s, p, c) == 0)
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user