diff options
author | Thomas Bushnell <thomas@gnu.org> | 1997-08-20 18:21:54 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1997-08-20 18:21:54 +0000 |
commit | ef96f4b5edb55a17dbd9f970f1ad42dbc0f57615 (patch) | |
tree | 0d9eef8f0853cc4652e948553b5d337c293c9b27 /pflocal | |
parent | 3d04a206b0238f89930bb5084683e75477eadcb2 (diff) |
Wed Aug 20 14:06:11 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* pflocal.c (main): New args for
ports_manage_port_operations_multithread.
* sserver.c (handle_sock_requests): Likewise.
Diffstat (limited to 'pflocal')
-rw-r--r-- | pflocal/ChangeLog | 6 | ||||
-rw-r--r-- | pflocal/pflocal.c | 4 | ||||
-rw-r--r-- | pflocal/sserver.c | 5 |
3 files changed, 10 insertions, 5 deletions
diff --git a/pflocal/ChangeLog b/pflocal/ChangeLog index cedcf08b..7c67ef37 100644 --- a/pflocal/ChangeLog +++ b/pflocal/ChangeLog @@ -1,3 +1,9 @@ +Wed Aug 20 14:06:11 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> + + * pflocal.c (main): New args for + ports_manage_port_operations_multithread. + * sserver.c (handle_sock_requests): Likewise. + Mon Oct 7 12:53:24 1996 Miles Bader <miles@gnu.ai.mit.edu> * connq.c (connq_listen): Unlock CQ->lock when returning EWOULDBLOCK. diff --git a/pflocal/pflocal.c b/pflocal/pflocal.c index 27148bd6..e5af311c 100644 --- a/pflocal/pflocal.c +++ b/pflocal/pflocal.c @@ -1,6 +1,6 @@ /* A server for local sockets, of type PF_LOCAL - Copyright (C) 1995 Free Software Foundation, Inc. + Copyright (C) 1995, 1997 Free Software Foundation, Inc. Written by Miles Bader <miles@gnu.ai.mit.edu> @@ -93,7 +93,7 @@ void main(int argc, char *argv[]) do ports_manage_port_operations_multithread (pf_port_bucket, pf_demuxer, - 30*1000, 5*60*1000, 0, 0); + 30*1000, 5*60*1000, 0); while (sock_global_shutdown () != 0); exit(0); diff --git a/pflocal/sserver.c b/pflocal/sserver.c index af0f0c1e..7e00b323 100644 --- a/pflocal/sserver.c +++ b/pflocal/sserver.c @@ -1,6 +1,6 @@ /* Server for socket ops - Copyright (C) 1995 Free Software Foundation, Inc. + Copyright (C) 1995, 1997 Free Software Foundation, Inc. Written by Miles Bader <miles@gnu.ai.mit.edu> @@ -52,8 +52,7 @@ handle_sock_requests () { ports_enable_bucket (sock_port_bucket); ports_manage_port_operations_multithread (sock_port_bucket, sock_demuxer, - 30*1000, 2*60*1000, - 1, MACH_PORT_NULL); + 30*1000, 2*60*1000, 0); } /* The last service thread is about to exist; make this known. */ |