Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDietmar Maurer <dietmar@mono-cvs.ximian.com>2002-04-30 06:09:11 +0400
committerDietmar Maurer <dietmar@mono-cvs.ximian.com>2002-04-30 06:09:11 +0400
commitf42cbb41506293b5d677e017a7e79bdc6e069aa7 (patch)
tree7a1ea34753398a63cf920febbcc2b6e816d5299c /docs
parent89cdcb87caad68efe788db7650e859011ea428c3 (diff)
2002-04-30 Dietmar Maurer <dietmar@ximian.com>
* exception.c (arch_handle_exception): use ctx->SC_EBP in end_of_stack check as suggested by Linus Upson <linus@linus.com> svn path=/trunk/mono/; revision=4159
Diffstat (limited to 'docs')
-rw-r--r--docs/exceptions2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/exceptions b/docs/exceptions
index 3bf2e606812..05f1be03bba 100644
--- a/docs/exceptions
+++ b/docs/exceptions
@@ -16,7 +16,7 @@ unmanaged code. That way we can recover from exceptions inside unmanaged code.
void handle_exception ((struct sigcontext *ctx, gpointer obj)
{
- if (ctx->ip < mono_end_of_stack) {
+ if (ctx->bp < mono_end_of_stack) {
/* unhandled exception */
abort ();
}