We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1f98233 + 507c200 commit 9f03d45Copy full SHA for 9f03d45
src/rt/rust_unwind.h
src/rt/rust_upcall.cpp
@@ -19,10 +19,16 @@
19
#include "rust_globals.h"
20
#include "rust_task.h"
21
#include "rust_sched_loop.h"
22
-#include "rust_unwind.h"
23
#include "rust_upcall.h"
24
#include "rust_util.h"
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
32
#ifdef __GNUC__
33
#define LOG_UPCALL_ENTRY(task) \
34
LOG(task, upcall, \
0 commit comments