commit | d04ccb8ebe12c52d9c4fb560aadd48900b9e9dfb | [log] [tgz] |
---|---|---|
author | Alexandre Julliard <julliard@winehq.org> | Tue Mar 04 22:18:43 2003 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Tue Mar 04 22:18:43 2003 +0000 |
tree | 2261d60eaa97fa291592c13ae236816185311886 | |
parent | 6168a2ea2010f645f23ab0b5ac1ffb004bb4a6cc [diff] [blame] |
Use SIGUSR1 instead of SIGSTOP to suspend threads.
diff --git a/scheduler/client.c b/scheduler/client.c index ef6db59..466fef7 100644 --- a/scheduler/client.c +++ b/scheduler/client.c
@@ -653,6 +653,8 @@ sigaddset( &block_set, SIGIO ); sigaddset( &block_set, SIGINT ); sigaddset( &block_set, SIGHUP ); + sigaddset( &block_set, SIGUSR1 ); + sigaddset( &block_set, SIGUSR2 ); /* receive the first thread request fd on the main socket */ NtCurrentTeb()->request_fd = receive_fd( &dummy_handle );