shithub: riscv

ref: 44b80d48af82fa8a5d632eb9bf6079c684a672ac
dir: /sys/src/libthread/ref.c/

View raw version
#include <u.h>
#include <libc.h>
#include <thread.h>
#include "threadimpl.h"

void
incref(Ref *r)
{
	ainc(&r->ref);
}

long
decref(Ref *r)
{
	return adec(&r->ref);
}