* fhandler_socket.cc (fhandler_socket::listen): Don't limit the number

of pipe instances.
This commit is contained in:
Corinna Vinschen 2005-03-08 16:33:17 +00:00
parent 8c2fb68a11
commit 1e2ce19b96
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2005-03-08 Corinna Vinschen <corinna@vinschen.de>
* fhandler_socket.cc (fhandler_socket::listen): Don't limit the number
of pipe instances.
2005-03-08 Christopher Faylor <cgf@timesys.com>
* pinfo.cc (pinfo::exit): Right shift exit value by eight when not

View File

@ -726,8 +726,8 @@ fhandler_socket::listen (int backlog)
CreateNamedPipe (eid_pipe_name ((char *) alloca (CYG_MAX_PATH + 1)),
PIPE_ACCESS_DUPLEX,
PIPE_TYPE_MESSAGE | PIPE_READMODE_MESSAGE,
1, sizeof (struct ucred), sizeof (struct ucred),
1000, &sec_all);
PIPE_UNLIMITED_INSTANCES, sizeof (struct ucred),
sizeof (struct ucred), 1000, &sec_all);
debug_printf ("sec_pipe: %x", sec_pipe);
}
connect_state (connected);