File tree Expand file tree Collapse file tree 6 files changed +2
-10
lines changed Expand file tree Collapse file tree 6 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ refs/heads/try: bf67eb2362b7d0f37012f2d6dac604c3bbacd2c6
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9
- refs/heads/incoming: 3830040a89297dd55f920ec26ab97fb2e33c7a00
9
+ refs/heads/incoming: 7f45ae54ea6609febda24a116e8c30b8fcda466b
10
10
refs/heads/dist-snap: 00dbbd01c2aee72982b3e0f9511ae1d4428c3ba9
11
11
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
12
12
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
Original file line number Diff line number Diff line change @@ -73,7 +73,6 @@ pub mod rustrt {
73
73
pub unsafe fn rust_gc_metadata ( ) -> * Word ;
74
74
75
75
pub unsafe fn rust_get_stack_segment ( ) -> * StackSegment ;
76
- pub unsafe fn rust_get_c_stack ( ) -> * StackSegment ;
77
76
}
78
77
}
79
78
Original file line number Diff line number Diff line change 1
- Subproject commit 56dd407f4f97a01b8df6554c569170d2fc276fcb
1
+ Subproject commit 2e9f0d21fe321849a4759a01fc28eae82ef196d6
Original file line number Diff line number Diff line change @@ -549,11 +549,6 @@ rust_get_stack_segment() {
549
549
return rust_get_current_task ()->stk ;
550
550
}
551
551
552
- extern " C" CDECL stk_seg *
553
- rust_get_c_stack () {
554
- return rust_get_current_task ()->get_c_stack ();
555
- }
556
-
557
552
extern " C" CDECL void
558
553
start_task (rust_task *target, fn_env_pair *f) {
559
554
target->start (f->f , f->env , NULL );
Original file line number Diff line number Diff line change @@ -374,7 +374,6 @@ rust_task : public kernel_owned<rust_task>
374
374
void call_on_c_stack (void *args, void *fn_ptr);
375
375
void call_on_rust_stack (void *args, void *fn_ptr);
376
376
bool have_c_stack () { return c_stack != NULL ; }
377
- stk_seg *get_c_stack () { return c_stack; }
378
377
379
378
rust_task_state get_state () { return state; }
380
379
rust_cond *get_cond () { return cond; }
Original file line number Diff line number Diff line change @@ -49,7 +49,6 @@ rust_task_is_unwinding
49
49
rust_get_task
50
50
rust_try_get_task
51
51
rust_get_stack_segment
52
- rust_get_c_stack
53
52
rust_log_str
54
53
start_task
55
54
vec_reserve_shared_actual
You can’t perform that action at this time.
0 commit comments