summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1994-05-10 19:38:53 +0000
committerMichael I. Bushnell <mib@gnu.org>1994-05-10 19:38:53 +0000
commit749fcd79933e95a49f5c941adea55f3fa81653ca (patch)
tree406be95f29dd375edc647cce4fbd468c32f4bfa5
parent2846530d8b4f821ed997125ddc853037ebf54554 (diff)
Initial revision
-rw-r--r--libtrivfs/handle-port.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/libtrivfs/handle-port.c b/libtrivfs/handle-port.c
new file mode 100644
index 00000000..13fb5e32
--- /dev/null
+++ b/libtrivfs/handle-port.c
@@ -0,0 +1,26 @@
+/*
+ Copyright (C) 1994 Free Software Foundation
+
+ This program 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.
+
+ This program 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., 675 Mass Ave, Cambridge, MA 02139, USA. */
+
+mach_port_t
+trivfs_handle_port (mach_port_t realnode)
+{
+ struct trivfs_control *cntl;
+
+ cntl = ports_allocate_port (sizeof (struct control), trivfs_cntl_porttype);
+ cntl->underlying = realnode;
+ return ports_get_right (cntl);
+}