ref: e6238ed6f6e740a9c6dabd428b4c381d828f1df1
dir: /sys/src/libthread/xincport.h/
#include <u.h>
#include <libc.h>
#include <thread.h>
static Lock l;
void
_xinc(long *p)
{
lock(&l);
(*p)++;
unlock(&l);
}
long
_xdec(long *p)
{
long r;
lock(&l);
r = --(*p);
unlock(&l);
return r;
}