shithub: riscv

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