File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 15
15
//
16
16
// 0 --- no headers, no debugging support
17
17
// 1 --- support poison, but do not track allocations
18
- // 2 --- track allocations in deatil
18
+ // 2 --- track allocations in detail
19
19
//
20
20
// NB: please do not commit code with level 2. It's
21
21
// hugely expensive and should only be used as a last resort.
Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ void upcall_s_clone_type_desc(s_clone_type_desc_args *args)
224
224
* Called to deep-clone type descriptors so they can be attached to a sendable
225
225
* function. Eventually this should perhaps move to a centralized hashtable.
226
226
*/
227
- type_desc *
227
+ extern " C " CDECL type_desc *
228
228
upcall_clone_type_desc (type_desc *td) {
229
229
s_clone_type_desc_args args = { td, 0 };
230
230
SWITCH_STACK (&args, upcall_s_clone_type_desc);
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ upcall_dynastack_free
58
58
upcall_dynastack_mark
59
59
upcall_fail
60
60
upcall_free
61
+ upcall_clone_type_desc
61
62
upcall_get_type_desc
62
63
upcall_log_type
63
64
upcall_malloc
You can’t perform that action at this time.
0 commit comments