Skip to content

Commit

Permalink
native: add more info to the native unimplemented error.
Browse files Browse the repository at this point in the history
This refers to green, which (AFAICT) has everything implemented. In
particular, this will help guide people to get working signal handling
via libgreen.
  • Loading branch information
huonw authored and alexcrichton committed Jun 10, 2014
1 parent d6a3941 commit 0581060
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libnative/io/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()),
}
}

Expand Down

0 comments on commit 0581060

Please sign in to comment.