Displaying 1 result from an estimated 1 matches for "unhandled_func".
2014 Mar 21
1
PATCH for cpu.c
Explanation of changes in this patch:
1)
'CALLBACK' was changed to 'WINAPI' because the signature of
an unhandled exception filter is
LONG (WINAPI *unhandled_func)(struct _EXCEPTION_POINTERS);
2)
The code
if(info->ia32.fxsr || info->ia32.sse || info->ia32.sse2) {
[...]
}
was replaced by
if(info->ia32.sse) {
[...]
}
else
info->ia32.fxsr = info->ia32.sse = [...] = false;
Reason: there's no...