Skip to content

Commit 0581060

Browse files
huonwalexcrichton
authored andcommitted
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.
1 parent d6a3941 commit 0581060

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libnative/io/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ fn unimpl() -> IoError {
7777
IoError {
7878
code: ERROR as uint,
7979
extra: 0,
80-
detail: None,
80+
detail: Some("not yet supported by the `native` runtime, maybe try `green`.".to_string()),
8181
}
8282
}
8383

0 commit comments

Comments
 (0)