plan9port/src/lib9pclient/close.c
2005-01-04 21:22:40 +00:00

29 lines
447 B
C

/* Copyright (C) 2003 Russ Cox, Massachusetts Institute of Technology */
/* See COPYRIGHT */
#include <u.h>
#include <libc.h>
#include <fcall.h>
#include <9pclient.h>
#include "fsimpl.h"
static void
fidclunk(CFid *fid)
{
Fcall tx, rx;
tx.type = Tclunk;
tx.fid = fid->fid;
_fsrpc(fid->fs, &tx, &rx, 0);
_fsputfid(fid);
}
void
fsclose(CFid *fid)
{
if(fid == nil)
return;
/* maybe someday there will be a ref count */
fidclunk(fid);
}