diff options
author | midipix <writeonce@midipix.org> | 2019-06-05 20:17:15 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-06-05 20:17:15 +0000 |
commit | 26ba506b86c0152030c7c761e744cb2b0d2d703a (patch) | |
tree | b8e232e25404347f00b26990b9fbd32bef984636 /include | |
parent | 18b707bdccb71a9ac26b431cca8deac42fc0501a (diff) | |
download | mmglue-26ba506b86c0152030c7c761e744cb2b0d2d703a.tar.bz2 mmglue-26ba506b86c0152030c7c761e744cb2b0d2d703a.tar.xz |
SEH exception handling: coding style: refactor references to system structures.
Diffstat (limited to 'include')
-rw-r--r-- | include/sys/unwind.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/sys/unwind.h b/include/sys/unwind.h index 9267db6..6fb2c2c 100644 --- a/include/sys/unwind.h +++ b/include/sys/unwind.h @@ -30,8 +30,8 @@ enum __unwind_reason_code { -struct _nt_exception_record; -struct _nt_dispatcher_context; +struct __exception_record; +struct __dispatcher_context; struct __unwind_exception; struct __unwind_context; @@ -59,17 +59,17 @@ struct __unwind_exception { int __unwind_exception_filter( - struct _nt_exception_record *, + struct __exception_record *, void *, mcontext_t *, - struct _nt_dispatcher_context *, + struct __dispatcher_context *, __unwind_personality_routine); int __unwind_exception_handler( - struct _nt_exception_record *, + struct __exception_record *, uintptr_t, mcontext_t *, - struct _nt_dispatcher_context *); + struct __dispatcher_context *); int __unwind_raise_exception( struct __unwind_exception *); |