File tree Expand file tree Collapse file tree 3 files changed +1
-22
lines changed
branches/snap-stage3/src/rt Expand file tree Collapse file tree 3 files changed +1
-22
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: 2898dcc5d97da9427ac367542382b6239d9c0bbf
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: 8910b2ff7c6fcf6bfa2192ccdfe74d29fd91f581
4
+ refs/heads/snap-stage3: d29e8fc059417774d07f85b5d7f5b566715567c3
5
5
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
Original file line number Diff line number Diff line change @@ -177,15 +177,6 @@ upcall_exchange_malloc(type_desc *td, uintptr_t size) {
177
177
return args.retval ;
178
178
}
179
179
180
- // FIXME (#2681): remove after snapshot (6/21/12)
181
- extern " C" CDECL uintptr_t
182
- upcall_exchange_malloc_dyn (type_desc *td, uintptr_t size) {
183
- rust_task *task = rust_get_current_task ();
184
- s_exchange_malloc_args args = {task, 0 , td, size};
185
- UPCALL_SWITCH_STACK (task, &args, upcall_s_exchange_malloc);
186
- return args.retval ;
187
- }
188
-
189
180
struct s_exchange_free_args {
190
181
rust_task *task;
191
182
void *ptr;
@@ -246,16 +237,6 @@ upcall_malloc(type_desc *td, uintptr_t size) {
246
237
return args.retval ;
247
238
}
248
239
249
- // FIXME (#2681): remove after snapshot (6/21/12)
250
- extern " C" CDECL uintptr_t
251
- upcall_malloc_dyn (type_desc *td, uintptr_t size) {
252
- rust_task *task = rust_get_current_task ();
253
- s_malloc_args args = {task, 0 , td, size};
254
- UPCALL_SWITCH_STACK (task, &args, upcall_s_malloc);
255
- return args.retval ;
256
- }
257
-
258
-
259
240
/* *********************************************************************
260
241
* Called whenever an object in the task-local heap is freed.
261
242
*/
Original file line number Diff line number Diff line change @@ -72,7 +72,6 @@ upcall_trace
72
72
upcall_free
73
73
upcall_validate_box
74
74
upcall_log_type
75
- upcall_malloc
76
75
upcall_malloc_dyn
77
76
upcall_rust_personality
78
77
upcall_vec_grow
@@ -85,7 +84,6 @@ upcall_call_shim_on_rust_stack
85
84
upcall_new_stack
86
85
upcall_del_stack
87
86
upcall_reset_stack_limit
88
- upcall_exchange_malloc
89
87
upcall_exchange_malloc_dyn
90
88
upcall_exchange_free
91
89
rust_uv_loop_new
You can’t perform that action at this time.
0 commit comments