Skip to content

Commit d0e1591

Browse files
committed
Comments only: annotate FIXMEs in core::run
1 parent 70dde68 commit d0e1591

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/run.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ fn program_output(prog: str, args: [str]) ->
287287
// Spawn two entire schedulers to read both stdout and sterr
288288
// in parallel so we don't deadlock while blocking on one
289289
// or the other. FIXME: Surely there's a much more clever way
290-
// to do this.
290+
// to do this. (#2625)
291291
let p = comm::port();
292292
let ch = comm::chan(p);
293293
task::spawn_sched(task::single_threaded) {||
@@ -387,7 +387,7 @@ mod tests {
387387
import io::writer_util;
388388

389389
// Regression test for memory leaks
390-
#[ignore(cfg(windows))] // FIXME
390+
#[ignore(cfg(windows))] // FIXME (#2626)
391391
fn test_leaks() {
392392
run::run_program("echo", []);
393393
run::start_program("echo", []);

0 commit comments

Comments
 (0)