From c3e6dd1141d7467d0fc162a1ab0c7e9ddfe98d8e Mon Sep 17 00:00:00 2001 From: "Michael I. Bushnell" Date: Fri, 15 Dec 1995 00:10:24 +0000 Subject: Initial revision --- libnetfs/make-protid.c | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 libnetfs/make-protid.c (limited to 'libnetfs/make-protid.c') diff --git a/libnetfs/make-protid.c b/libnetfs/make-protid.c new file mode 100644 index 00000000..e986b293 --- /dev/null +++ b/libnetfs/make-protid.c @@ -0,0 +1,36 @@ +/* + Copyright (C) 1995 Free Software Foundation, Inc. + Written by Michael I. Bushnell, p/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 "netfs.h" + +struct protid * +netfs_make_protid (struct peropen *po, struct netcred *cred) +{ + struct protid *pi; + + pi = ports_allocate_port (netfs_port_bucket, sizeof (struct protid), + netfs_protid_class); + po->refcnt++; + pi->po = po; + pi->cred = cred; + pi->shared_object = MACH_PORT_NULL; + pi->mapped = 0; + return pi; +} -- cgit v1.2.3