| commit | c316f0e47fd75c8cc2ddf77b847d59b0e8f475d2 | [log] [tgz] |
|---|---|---|
| author | Alexandre Julliard <julliard@winehq.org> | Wed Jul 19 14:00:10 2006 +0200 |
| committer | Alexandre Julliard <julliard@winehq.org> | Wed Jul 19 14:00:10 2006 +0200 |
| tree | 3be4c37b3f6685d2c6e78f786f04aa45f235e506 | |
| parent | 718716b77a0461402084e24927ae31b6d23a3b2f [diff] [blame] |
server: Simplify process creation. Pass the socket for the new process from the parent through the environment. Perform initialisations during the new_process request.
diff --git a/server/request.c b/server/request.c index a78916e..260fc62 100644 --- a/server/request.c +++ b/server/request.c
@@ -508,7 +508,7 @@ sock->timeout = NULL; } fcntl( client, F_SETFL, O_NONBLOCK ); - create_process( client ); + create_process( client, NULL, 0 ); } }