mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
14 lines
115 B
C
14 lines
115 B
C
|
#include "threadimpl.h"
|
||
|
|
||
|
void
|
||
|
incref(Ref *r)
|
||
|
{
|
||
|
_xinc(&r->ref);
|
||
|
}
|
||
|
|
||
|
long
|
||
|
decref(Ref *r)
|
||
|
{
|
||
|
return _xdec(&r->ref);
|
||
|
}
|