aboutsummaryrefslogtreecommitdiff
path: root/src/libthread/ref.c
blob: 9b78e63e6f4b8ffad00f2af24936e1d932f4ee5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "threadimpl.h"

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

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