diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-12-15 00:10:24 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-12-15 00:10:24 +0000 |
commit | c3e6dd1141d7467d0fc162a1ab0c7e9ddfe98d8e (patch) | |
tree | 8d4cd7e83babf79c41d3e248b981f956563bd297 | |
parent | 4e3b849daf080c3e89ef829e38a60bf09a9db643 (diff) |
Initial revision
-rw-r--r-- | libnetfs/make-protid.c | 36 |
1 files changed, 36 insertions, 0 deletions
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; +} |