Home
last modified time | relevance | path

Searched refs:CPUSET (Results 1 – 1 of 1) sorted by relevance

/titanic_50/usr/src/uts/common/sys/
H A Dcpuvar.h500 #define CPUSET(cpu) (1UL << (cpu)) macro
503 #define CPUSET_ALL_BUT(set, cpu) ((void)((set) = ~CPUSET(cpu)))
504 #define CPUSET_ONLY(set, cpu) ((void)((set) = CPUSET(cpu)))
505 #define CPU_IN_SET(set, cpu) ((set) & CPUSET(cpu))
506 #define CPUSET_ADD(set, cpu) ((void)((set) |= CPUSET(cpu)))
507 #define CPUSET_DEL(set, cpu) ((void)((set) &= ~CPUSET(cpu)))
524 #define CPUSET_ATOMIC_DEL(set, cpu) atomic_and_ulong(&(set), ~CPUSET(cpu))
525 #define CPUSET_ATOMIC_ADD(set, cpu) atomic_or_ulong(&(set), CPUSET(cpu))