summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--trans/ChangeLog9
-rw-r--r--trans/crash.c4
-rw-r--r--trans/fifo.c5
-rw-r--r--trans/firmlink.c2
-rw-r--r--trans/new-fifo.c4
-rw-r--r--trans/null.c2
6 files changed, 18 insertions, 8 deletions
diff --git a/trans/ChangeLog b/trans/ChangeLog
index 9bd5579b..1d2f2d5f 100644
--- a/trans/ChangeLog
+++ b/trans/ChangeLog
@@ -1,3 +1,12 @@
+Wed Aug 20 14:07:56 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
+
+ * crash.c (main): New args for
+ ports_manage_port_operations_multithread.
+ * fifo.c (main): Likewise.
+ * firmlink.c (main): Likewise.
+ * new-fifo.c (main): Likewise.
+ * null.c (main): Likewise.
+
1997-07-22 Miles Bader <miles@gnu.ai.mit.edu>
* devport.c: File removed.
diff --git a/trans/crash.c b/trans/crash.c
index 5947cb26..f133c396 100644
--- a/trans/crash.c
+++ b/trans/crash.c
@@ -1,5 +1,5 @@
/* GNU Hurd standard crash dump server.
- Copyright (C) 1995, 1996 Free Software Foundation, Inc.
+ Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
Written by Roland McGrath.
This file is part of the GNU Hurd.
@@ -402,7 +402,7 @@ main (int argc, char **argv)
ports_manage_port_operations_multithread (port_bucket, crash_demuxer,
10 * 1000, /* idle thread */
10 * 60 * 1000, /* idle server */
- 0, MACH_PORT_NULL);
+ 0);
/* That returns when 10 minutes pass without an RPC. Try shutting down
as if sent fsys_goaway; if we have any users who need us to stay
around, this returns EBUSY and we loop to service more RPCs. */
diff --git a/trans/fifo.c b/trans/fifo.c
index 6ef40e62..dd4776f7 100644
--- a/trans/fifo.c
+++ b/trans/fifo.c
@@ -101,8 +101,9 @@ main (int argc, char **argv)
do
{
ports_enable_class (fsys->protid_class);
- ports_manage_port_operations_multithread (fsys->pi.bucket, trivfs_demuxer,
- 30*1000, 5*60*1000, 0, 0);
+ ports_manage_port_operations_multithread (fsys->pi.bucket,
+ trivfs_demuxer,
+ 30*1000, 5*60*1000, 0);
}
while (ports_count_class (fsys->protid_class) > 0);
diff --git a/trans/firmlink.c b/trans/firmlink.c
index 48211308..1012059e 100644
--- a/trans/firmlink.c
+++ b/trans/firmlink.c
@@ -86,7 +86,7 @@ main (int argc, char **argv)
/* Launch. */
ports_manage_port_operations_multithread (fsys->pi.bucket, trivfs_demuxer,
- 2 * 60 * 1000, 0, 0, 0);
+ 2 * 60 * 1000, 0, 0);
exit (0);
}
diff --git a/trans/new-fifo.c b/trans/new-fifo.c
index 150121f6..f24eb107 100644
--- a/trans/new-fifo.c
+++ b/trans/new-fifo.c
@@ -1,6 +1,6 @@
/* A translator for fifos
- Copyright (C) 1995, 1996 Free Software Foundation, Inc.
+ Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
Written by Miles Bader <miles@gnu.ai.mit.edu>
@@ -226,7 +226,7 @@ main (int argc, char **argv)
ports_enable_class (fifo_port_class);
ports_manage_port_operations_multithread (port_bucket,
trivfs_demuxer,
- 30*1000, 5*60*1000, 0, 0);
+ 30*1000, 5*60*1000, 0);
}
while (ports_count_class (fifo_port_class) > 0);
diff --git a/trans/null.c b/trans/null.c
index fadb1dee..d00e5ea6 100644
--- a/trans/null.c
+++ b/trans/null.c
@@ -55,7 +55,7 @@ main (int argc, char **argv)
/* Launch. */
ports_manage_port_operations_multithread (fsys->pi.bucket, trivfs_demuxer,
- 2 * 60 * 1000, 0, 0, 0);
+x 2 * 60 * 1000, 0, 0);
exit(0);
}