* exceptions.cc (exception::myfault_handle): Rephrase comment.
This commit is contained in:
parent
64cfc4ac5a
commit
3dab1e488a
|
@ -1,3 +1,7 @@
|
||||||
|
2014-07-09 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* exceptions.cc (exception::myfault_handle): Rephrase comment.
|
||||||
|
|
||||||
2014-07-09 Corinna Vinschen <corinna@vinschen.de>
|
2014-07-09 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* exceptions.cc (exception::myfault_handle): Fix typo in comment.
|
* exceptions.cc (exception::myfault_handle): Fix typo in comment.
|
||||||
|
|
|
@ -564,7 +564,10 @@ exception::myfault_handle (LPEXCEPTION_POINTERS ep)
|
||||||
case STATUS_ACCESS_VIOLATION:
|
case STATUS_ACCESS_VIOLATION:
|
||||||
case STATUS_DATATYPE_MISALIGNMENT:
|
case STATUS_DATATYPE_MISALIGNMENT:
|
||||||
#if 0
|
#if 0
|
||||||
/* Short-circuiting STATUS_STACK_OVERFLOW disables stack commits. */
|
/* PAGE_GUARD-based stack commits are based on structured exception
|
||||||
|
handling. Short-circuiting STATUS_STACK_OVERFLOW in a vectored
|
||||||
|
exception handler disables that, which can ultimately result in
|
||||||
|
a spurious SEGV. */
|
||||||
case STATUS_STACK_OVERFLOW:
|
case STATUS_STACK_OVERFLOW:
|
||||||
#endif
|
#endif
|
||||||
case STATUS_ARRAY_BOUNDS_EXCEEDED:
|
case STATUS_ARRAY_BOUNDS_EXCEEDED:
|
||||||
|
|
Loading…
Reference in New Issue