Convert NOTEs to FIXMEs

This commit is contained in:
Brian Anderson 2013-02-27 18:44:35 -08:00
parent 269409f912
commit 4a04a188e3
2 changed files with 3 additions and 3 deletions

View File

@ -20,8 +20,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();
}