ref: d091e9f0123b86ddabfd76d3637f49486b0b16df
dir: /sys/src/cmd/unix/drawterm/posix-386/tas.c/
#include "u.h"
#include "libc.h"
int
tas(long *x)
{
int v;
__asm__( "movl $1, %%eax\n\t"
"xchgl %%eax,(%%ecx)"
: "=a" (v)
: "c" (x)
);
switch(v) {
case 0:
case 1:
return v;
default:
print("canlock: corrupted 0x%lux\n", v);
return 1;
}
}