Juan Lang juan_lang@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.