core: most rebase cruft cleanup

This commit is contained in:
Jeff Olson 2012-09-07 13:11:15 -07:00 committed by Brian Anderson
parent 6d84d86736
commit 3e58158375

View file

@ -1094,7 +1094,7 @@ struct AutoNotify {
}
}
fn AutoNotify(chan: Chan<Notification>) -> AutoNotify {
fn AutoNotify(+chan: Chan<Notification>) -> AutoNotify {
AutoNotify {
notify_chan: chan,
failed: true // Un-set above when taskgroup successfully made.
@ -1667,6 +1667,7 @@ fn test_spawn_raw_simple() {
fn test_spawn_raw_unsupervise() {
let opts = {
linked: false,
mut notify_chan: None,
.. default_task_opts()
};
do spawn_raw(opts) {
@ -1842,7 +1843,7 @@ fn test_spawn_raw_notify_success() {
let (notify_ch, notify_po) = pipes::stream();
let opts = {
notify_chan: Some(move notify_ch)
notify_chan: Some(move notify_ch),
.. default_task_opts()
};
do spawn_raw(opts) |move task_ch| {