auto merge of #5162 : brson/rust/fixmes, r=brson

This commit is contained in:
bors 2013-03-01 01:54:38 -08:00
commit 1d34a55d88
2 changed files with 3 additions and 3 deletions

View File

@ -17,8 +17,8 @@ use vec;
use pipes::{recv, try_recv, wait_many, peek, PacketHeader};
// NOTE Making this public exposes some plumbing from pipes. Needs
// some refactoring
// FIXME #5160: Making this public exposes some plumbing from
// pipes. Needs some refactoring
pub use pipes::Selectable;
/// A trait for things that can send multiple messages.

View File

@ -120,7 +120,7 @@ upcall_fail(char const *expr,
size_t line) {
rust_task *task = rust_try_get_current_task();
if (task == NULL) {
// NOTE: Need to think about what to do here
// FIXME #5161: Need to think about what to do here
printf("failure outside of a task");
abort();
}