I was reading a file capability.h given here I am not clear as how can symbols | ~ & and &~ be used in function calls what are they doing in
Use of | in following function call
static inline kernel_cap_t cap_combine(const kernel_cap_t a,
const kernel_cap_t b)
{
kernel_cap_t dest;
CAP_BOP_ALL(dest, a, b, |);
return dest;
}
Use of & in following system call
static inline kernel_cap_t cap_intersect(const kernel_cap_t a,
const kernel_cap_t b)
{
kernel_cap_t dest;
CAP_BOP_ALL(dest, a, b, &);
return dest;
}
Use of &~ in following function
static inline kernel_cap_t cap_drop(const kernel_cap_t a,
const kernel_cap_t drop)
{
kernel_cap_t dest;
CAP_BOP_ALL(dest, a, drop, &~);
return dest;
}
Use of ~ in following function
static inline kernel_cap_t cap_invert(const kernel_cap_t c)
{
kernel_cap_t dest;
CAP_UOP_ALL(dest, c, ~);
return dest;
}

CAP_BOP_ALL- for example, it could expand toc = a OP b, withOPsubstituted with|,&, etc, to have different effects. – Rob I Jan 10 at 18:47