summaryrefslogtreecommitdiff
path: root/libnetfs/nref.c
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1999-07-01 21:30:38 +0000
committerThomas Bushnell <thomas@gnu.org>1999-07-01 21:30:38 +0000
commitb99a3ad650fec94f5f476dd739972b8cb6c8daca (patch)
treec445bdf36b64039d1130df1f6716a9e95cfd0bd6 /libnetfs/nref.c
parent1f6601e1a657d7008f6c15fca71d2dc092f7cb78 (diff)
1999-07-01 Thomas Bushnell, BSG <tb@mit.edu>
* nref.c: New file; guts from netfs.h. * nrele.c: Likewise. * nput.c: Likewise. * netfs.h (netfs_nref, netfs_nrele, netfs_nput): Replace inline definitions with normal declarations. (NETFS_EI): Remove macro. * netfs.c: Deleted file. * Makefile (OTHERSRCS): Add nref.c, nrele.c, nput.c. Remove netfs.c.
Diffstat (limited to 'libnetfs/nref.c')
-rw-r--r--libnetfs/nref.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/libnetfs/nref.c b/libnetfs/nref.c
new file mode 100644
index 00000000..f5a970da
--- /dev/null
+++ b/libnetfs/nref.c
@@ -0,0 +1,29 @@
+/*
+ Copyright (C) 1999 Free Software Foundation, Inc.
+ Written by Thomas Bushnell, BSG.
+
+ This file is part of the GNU Hurd.
+
+ The GNU Hurd is free software; you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation; either version 2, or (at
+ your option) any later version.
+
+ The GNU Hurd is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
+
+#include "priv.h"
+
+void
+netfs_nref (struct node *np)
+{
+ spin_lock (&netfs_node_refcnt_lock);
+ np->references++;
+ spin_unlock (&netfs_node_refcnt_lock);
+}