ref: 225e1c0e1f0fdfaeb50e1a3185efa75658b53ef3
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;
}