summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--storeio/ChangeLog6
-rw-r--r--storeio/pager.c3
-rw-r--r--storeio/storeio.c2
3 files changed, 8 insertions, 3 deletions
diff --git a/storeio/ChangeLog b/storeio/ChangeLog
index aaeac223..a56752ca 100644
--- a/storeio/ChangeLog
+++ b/storeio/ChangeLog
@@ -1,3 +1,9 @@
+Wed Aug 20 14:07:05 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
+
+ * pager.c (service_paging_requests): New args for
+ ports_manage_port_operations_multithread.
+ * storeio.c (main): Likewise.
+
1997-07-23 Miles Bader <miles@gnu.ai.mit.edu>
* io.c (trivfs_S_io_readable, trivfs_S_io_read, trivfs_S_io_map):
diff --git a/storeio/pager.c b/storeio/pager.c
index 8cafa176..e586fd68 100644
--- a/storeio/pager.c
+++ b/storeio/pager.c
@@ -140,8 +140,7 @@ service_paging_requests (any_t arg)
for (;;)
ports_manage_port_operations_multithread (pager_port_bucket,
pager_demuxer,
- 1000 * 30, 1000 * 60 * 5,
- 1, MACH_PORT_NULL);
+ 1000 * 30, 1000 * 60 * 5, 0);
}
/* Initialize paging for this device. */
diff --git a/storeio/storeio.c b/storeio/storeio.c
index a2c8083a..43612c00 100644
--- a/storeio/storeio.c
+++ b/storeio/storeio.c
@@ -128,7 +128,7 @@ void main (int argc, char *argv[])
/* Launch. */
ports_manage_port_operations_multithread (fsys->pi.bucket, trivfs_demuxer,
- 30*1000, 5*60*1000, 0, 0);
+ 30*1000, 5*60*1000, 0);
exit (0);
}