Skip to content

Commit c5e6433

Browse files
committed
---
yaml --- r: 55731 b: refs/heads/master c: 7f45ae5 h: refs/heads/master i: 55729: 41c2a3f 55727: 81a2822 v: v3
1 parent b2a14b5 commit c5e6433

File tree

6 files changed

+2
-10
lines changed

6 files changed

+2
-10
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 3830040a89297dd55f920ec26ab97fb2e33c7a00
2+
refs/heads/master: 7f45ae54ea6609febda24a116e8c30b8fcda466b
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 79a2b2eafc3c766cecec8a5f76317693bae9ed17
55
refs/heads/try: 8eb2bab100b42f0ba751552d8eff00eb2134c55a

trunk/src/libcore/gc.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ pub mod rustrt {
7373
pub unsafe fn rust_gc_metadata() -> *Word;
7474

7575
pub unsafe fn rust_get_stack_segment() -> *StackSegment;
76-
pub unsafe fn rust_get_c_stack() -> *StackSegment;
7776
}
7877
}
7978

trunk/src/llvm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Subproject commit 56dd407f4f97a01b8df6554c569170d2fc276fcb
1+
Subproject commit 2e9f0d21fe321849a4759a01fc28eae82ef196d6

trunk/src/rt/rust_builtin.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -549,11 +549,6 @@ rust_get_stack_segment() {
549549
return rust_get_current_task()->stk;
550550
}
551551

552-
extern "C" CDECL stk_seg *
553-
rust_get_c_stack() {
554-
return rust_get_current_task()->get_c_stack();
555-
}
556-
557552
extern "C" CDECL void
558553
start_task(rust_task *target, fn_env_pair *f) {
559554
target->start(f->f, f->env, NULL);

trunk/src/rt/rust_task.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,6 @@ rust_task : public kernel_owned<rust_task>
374374
void call_on_c_stack(void *args, void *fn_ptr);
375375
void call_on_rust_stack(void *args, void *fn_ptr);
376376
bool have_c_stack() { return c_stack != NULL; }
377-
stk_seg *get_c_stack() { return c_stack; }
378377

379378
rust_task_state get_state() { return state; }
380379
rust_cond *get_cond() { return cond; }

trunk/src/rt/rustrt.def.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ rust_task_is_unwinding
4949
rust_get_task
5050
rust_try_get_task
5151
rust_get_stack_segment
52-
rust_get_c_stack
5352
rust_log_str
5453
start_task
5554
vec_reserve_shared_actual

0 commit comments

Comments
 (0)