diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-07-17 18:35:14 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-07-17 18:35:14 +0000 |
commit | 1e9d4db8c1652817c9ca7952613b47f9b4dd7e4b (patch) | |
tree | 24c2ed7fd1b1f118cd9b67e3ea9544c507c13fe6 | |
parent | a7c784ba1699366e27336ba99eefe6221101aa93 (diff) |
(thread_function): Don't have any global timeout here; we don't use it
anyhow.
-rw-r--r-- | ufs/pager.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ufs/pager.c b/ufs/pager.c index de5e1d18..52e77f05 100644 --- a/ufs/pager.c +++ b/ufs/pager.c @@ -380,10 +380,8 @@ static void thread_function (any_t foo __attribute__ ((unused))) { for (;;) - ports_manage_port_operations_multithread (pager_bucket, - pager_demuxer, - 1000 * 60 * 2, - 1000 * 60 * 10, + ports_manage_port_operations_multithread (pager_bucket, pager_demuxer, + 1000 * 60 * 2, 0, 1, MACH_PORT_NULL); } |