[1/2] server: add ability to send a unix signal to arbitrary thread

Alexandre Julliard julliard at winehq.org
Mon Jan 12 06:18:01 CST 2009


"Kirill K. Smirnov" <lich at math.spbu.ru> writes:

> diff --git a/server/protocol.def b/server/protocol.def
> index 6d6be5b..35dfcc0 100644
> --- a/server/protocol.def
> +++ b/server/protocol.def
> @@ -664,6 +664,12 @@ typedef union
>      int          count;        /* new suspend count */
>  @END
>  
> +/* Send a unix signal to thread */
> + at REQ(kill_thread)
> +    obj_handle_t handle;       /* thread handle */
> +    int          sig;          /* unix signal to send */
> + at END

This does not belong in the server. The dosvm support should be fixed to
use Win32 APIs instead of Unix signals.

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list