ref: 943e142d5b46b45b782c5ab4e42fc3d79f6f4435
dir: /win32-386/tas.c/
#include "u.h" #include "libc.h" int tas(int *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; } }