msvcrt: implement signals, take 2

Alexandre Julliard julliard at winehq.org
Thu May 12 04:08:42 CDT 2005


Juan Lang <juan_lang at yahoo.com> writes:

> +    switch (sig)
> +    {
> +    /* Cases that fall through to signal(2) */
> +    case SIGABRT:
> +    case SIGFPE:
> +    case SIGILL:
> +    case SIGSEGV:
> +        ret = signal(sig, func);
> +        break;

You can't do that, this will cause major trouble. MSVCRT signals
should be generated from Win32 exceptions.

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list