* exceptions.cc (exception::myfault_handle): Rephrase comment.

This commit is contained in:
Corinna Vinschen 2014-07-09 10:41:11 +00:00
parent 64cfc4ac5a
commit 3dab1e488a
2 changed files with 8 additions and 1 deletions

View File

@ -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>
* exceptions.cc (exception::myfault_handle): Fix typo in comment.

View File

@ -564,7 +564,10 @@ exception::myfault_handle (LPEXCEPTION_POINTERS ep)
case STATUS_ACCESS_VIOLATION:
case STATUS_DATATYPE_MISALIGNMENT:
#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:
#endif
case STATUS_ARRAY_BOUNDS_EXCEEDED: