shithub: riscv

ref: 567b1b912a91bf56bebacc67b6a467986d5bed6c
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);
}