Skip to content

Commit 9f03d45

Browse files
committed
auto merge of #5646 : Aatch/rust/unwind-fix, r=brson
This fixes issue #5641
2 parents 1f98233 + 507c200 commit 9f03d45

File tree

2 files changed

+7
-41
lines changed

2 files changed

+7
-41
lines changed

src/rt/rust_unwind.h

-40
This file was deleted.

src/rt/rust_upcall.cpp

+7-1
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,16 @@
1919
#include "rust_globals.h"
2020
#include "rust_task.h"
2121
#include "rust_sched_loop.h"
22-
#include "rust_unwind.h"
2322
#include "rust_upcall.h"
2423
#include "rust_util.h"
2524

25+
//Unwinding ABI declarations.
26+
typedef int _Unwind_Reason_Code;
27+
typedef int _Unwind_Action;
28+
29+
struct _Unwind_Context;
30+
struct _Unwind_Exception;
31+
2632
#ifdef __GNUC__
2733
#define LOG_UPCALL_ENTRY(task) \
2834
LOG(task, upcall, \

0 commit comments

Comments
 (0)