summaryrefslogtreecommitdiff
path: root/pflocal
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1995-07-22 02:06:39 +0000
committerMiles Bader <miles@gnu.org>1995-07-22 02:06:39 +0000
commit14ec591583b9a411b499c5b826b28af261c8aee8 (patch)
tree43bf65596254839b6163c490406b3d3b516d918c /pflocal
parentb5abf101421ffeafe6e5408ff86dc601f0c94fe5 (diff)
Formerly pflocal.c.~8~
Diffstat (limited to 'pflocal')
-rw-r--r--pflocal/pflocal.c19
1 files changed, 14 insertions, 5 deletions
diff --git a/pflocal/pflocal.c b/pflocal/pflocal.c
index 96271bbe..89c33811 100644
--- a/pflocal/pflocal.c
+++ b/pflocal/pflocal.c
@@ -63,10 +63,11 @@ usage(int status)
exit(status);
}
-#define SHORT_OPTIONS "&"
+#define SHORT_OPTIONS "D&"
static struct option options[] =
{
+ {"debug", no_argument, 0, 'D'},
{"help", no_argument, 0, '&'},
{0, 0, 0, 0}
};
@@ -81,6 +82,9 @@ pf_demuxer (mach_msg_header_t *inp, mach_msg_header_t *outp)
return socket_server (inp, outp) || trivfs_demuxer (inp, outp);
}
+int debug_flag = 0;
+struct mutex debug_lock;
+
void main(int argc, char *argv[])
{
int opt;
@@ -90,6 +94,7 @@ void main(int argc, char *argv[])
while ((opt = getopt_long(argc, argv, SHORT_OPTIONS, options, 0)) != EOF)
switch (opt)
{
+ case 'D': debug_flag = 1; break;
case '&': usage(0);
default: usage(1);
}
@@ -114,6 +119,8 @@ void main(int argc, char *argv[])
if (err)
error(3, err, "Initializing");
+mutex_init (&debug_lock);
+
/* Reply to our parent */
err =
trivfs_startup(bootstrap,
@@ -124,9 +131,11 @@ void main(int argc, char *argv[])
error(3, err, "Contacting parent");
/* Launch. */
- ports_manage_port_operations_multithread (pf_port_bucket,
- pf_demuxer,
- 30*1000, 5*60*1000, 0, 0);
+ do
+ ports_manage_port_operations_multithread (pf_port_bucket,
+ pf_demuxer,
+ 30*1000, 5*60*1000, 0, 0);
+ while (sock_global_shutdown () != 0);
exit(0);
}
@@ -148,7 +157,7 @@ trivfs_goaway (int flags, mach_port_t realnode,
ports_inhibit_bucket_rpcs (pf_port_bucket);
/* Now see if there are any old sockets lying around. */
- err = sock_global_shutdown (flags);
+ err = sock_global_shutdown ();
/* Exit if not, or if we must. */
if (err == 0 || flags & FSYS_GOAWAY_FORCE)