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.
This commit is contained in:
Huon Wilson 2014-06-10 00:31:31 +10:00 committed by Alex Crichton
parent d6a39419db
commit 05810604c8
1 changed files with 1 additions and 1 deletions

View File

@ -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()),
}
}