diff options
author | John Baldwin <jhb@FreeBSD.org> | 2022-01-27 18:34:35 +0000 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2022-01-27 18:34:35 +0000 |
commit | b84693501af6521487327ec4eb7c6ae0097ac5d7 (patch) | |
tree | 4967797a083662184c3718dc558d718f250c1d53 /lib/libthr | |
parent | 4531b3450b23a01de04b3bb393e475cf734793c8 (diff) | |
download | src-b84693501af6521487327ec4eb7c6ae0097ac5d7.tar.gz src-b84693501af6521487327ec4eb7c6ae0097ac5d7.zip |
Diffstat (limited to 'lib/libthr')
-rw-r--r-- | lib/libthr/thread/thr_exit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libthr/thread/thr_exit.c b/lib/libthr/thread/thr_exit.c index 78497c4a206a..c1244962f192 100644 --- a/lib/libthr/thread/thr_exit.c +++ b/lib/libthr/thread/thr_exit.c @@ -61,7 +61,7 @@ static void thread_unwind(void) __dead2; static void thread_uw_init(void); static _Unwind_Reason_Code thread_unwind_stop(int version, _Unwind_Action actions, - int64_t exc_class, + uint64_t exc_class, struct _Unwind_Exception *exc_obj, struct _Unwind_Context *context, void *stop_parameter); /* unwind library pointers */ @@ -133,7 +133,7 @@ thread_unwind_cleanup(_Unwind_Reason_Code code __unused, static _Unwind_Reason_Code thread_unwind_stop(int version __unused, _Unwind_Action actions, - int64_t exc_class __unused, + uint64_t exc_class __unused, struct _Unwind_Exception *exc_obj __unused, struct _Unwind_Context *context, void *stop_parameter __unused) { |