From 05810604c8f1ecebe35a8676df7371487ec80513 Mon Sep 17 00:00:00 2001 From: Huon Wilson Date: Tue, 10 Jun 2014 00:31:31 +1000 Subject: [PATCH] native: add more info to the native unimplemented error. This refers to green, which (AFAICT) has everything implemented. In particular, this will help guide people to get working signal handling via libgreen. --- src/libnative/io/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libnative/io/mod.rs b/src/libnative/io/mod.rs index 3b0dbe2d0dc..4c5929ef223 100644 --- a/src/libnative/io/mod.rs +++ b/src/libnative/io/mod.rs @@ -77,7 +77,7 @@ fn unimpl() -> IoError { IoError { code: ERROR as uint, extra: 0, - detail: None, + detail: Some("not yet supported by the `native` runtime, maybe try `green`.".to_string()), } }