All pastes #198186 Raw Edit

Untitled

public text v1 · immutable
#198186 ·published 2006-10-11 20:31 UTC
rendered paste body
static inline bool test_and_set(bool *x, bool v)
{
    asm volatile (
        "swpb %0, %0, [%1]\n"
        : "+r"(v)
        : "r"(x)
    );
    return v;
}