File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
branches/auto/src/libstd/task Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,6 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
14
14
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
15
15
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
16
16
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
17
- refs/heads/auto: 3f6b4c24ec2234a06632234eaf3014ae0e4adc66
17
+ refs/heads/auto: 9675cd311a405bd5222597a69825733029a2a040
18
18
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
19
19
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
Original file line number Diff line number Diff line change @@ -512,7 +512,9 @@ impl RuntimeGlue {
512
512
unsafe fn kill_all_tasks( task: & TaskHandle ) {
513
513
match * task {
514
514
OldTask ( ptr) => rt:: rust_task_kill_all( ptr) ,
515
- NewTask ( ref _handle) => rtabort ! ( "unimplemented" ) , // FIXME(#7544)
515
+ // FIXME(#7544): Remove the kill_all feature entirely once the
516
+ // oldsched goes away.
517
+ NewTask ( ref _handle) => rtabort ! ( "can't kill_all in newsched" ) ,
516
518
}
517
519
}
518
520
@@ -573,7 +575,10 @@ impl RuntimeGlue {
573
575
members : members,
574
576
descendants : TaskSet :: new ( ) ,
575
577
} ) ) ;
576
- let group = Taskgroup ( tasks, AncestorList ( None ) , true , None ) ;
578
+ // FIXME(#7544): Remove the is_main flag entirely once
579
+ // the newsched goes away. The main taskgroup has no special
580
+ // behaviour.
581
+ let group = Taskgroup ( tasks, AncestorList ( None ) , false , None ) ;
577
582
( * me) . taskgroup = Some ( group) ;
578
583
( * me) . taskgroup . get_ref ( )
579
584
}
You can’t perform that action at this time.
0 commit comments