> No cheers, and no reason to skip W2k. Too bad, hope you and the other
> 11 enjoy playing with yourselves.
>
> --hsm

I don't have a Windows box handy to test, but it looks like you could
kill the XP dependency by replacing the vectored exception handler in
os_windows_nt's c_to_factor_toplevel with a structured exception
handling block, something like:

void c_to_factor_toplevel(CELL quot)
{
    __try {
        c_to_factor(quot);
    } __except (1) {
        exception_handler(GetExceptionInformation());
    }
}

-Joe

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Factor-talk mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/factor-talk

Reply via email to