diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-01-30 19:59:04 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-01-30 19:59:04 +0000 |
commit | 587dda340e6a3357c2bc3e181810099e6d033fba (patch) | |
tree | 9f399d7ac1c79f1132e8adc615b3cd29a368b8af | |
parent | 163fb6ef6262cb09923f378f9c1e7222c520e008 (diff) |
Formerly init-init.c.~3~
-rw-r--r-- | libnetfs/init-init.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/libnetfs/init-init.c b/libnetfs/init-init.c index 35a8c11d..2ad25be8 100644 --- a/libnetfs/init-init.c +++ b/libnetfs/init-init.c @@ -1,5 +1,5 @@ /* - Copyright (C) 1995 Free Software Foundation, Inc. + Copyright (C) 1995, 1996 Free Software Foundation, Inc. Written by Michael I. Bushnell, p/BSG. This file is part of the GNU Hurd. @@ -23,3 +23,11 @@ spin_lock_t netfs_node_refcnt_lock = SPIN_LOCK_INITIALIZER; +void +netfs_init () +{ + netfs_protid_class = ports_create_class (netfs_release_protid, 0); + netfs_control_class = ports_create_class (0, 0); + netfs_port_bucket = ports_create_bucket (); + netfs_auth_server_port = getauth (); +} |