Skip to content

Commit 1d34a55

Browse files
committed
auto merge of #5162 : brson/rust/fixmes, r=brson
2 parents a660bb3 + 4a04a18 commit 1d34a55

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/libcore/comm.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ use vec;
1717

1818
use pipes::{recv, try_recv, wait_many, peek, PacketHeader};
1919

20-
// NOTE Making this public exposes some plumbing from pipes. Needs
21-
// some refactoring
20+
// FIXME #5160: Making this public exposes some plumbing from
21+
// pipes. Needs some refactoring
2222
pub use pipes::Selectable;
2323

2424
/// A trait for things that can send multiple messages.

src/rt/rust_upcall.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ upcall_fail(char const *expr,
120120
size_t line) {
121121
rust_task *task = rust_try_get_current_task();
122122
if (task == NULL) {
123-
// NOTE: Need to think about what to do here
123+
// FIXME #5161: Need to think about what to do here
124124
printf("failure outside of a task");
125125
abort();
126126
}

0 commit comments

Comments
 (0)