diff options
| author | Huon Wilson <dbau.pp+github@gmail.com> | 2014-06-10 00:31:31 +1000 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-06-09 17:46:53 -0700 |
| commit | 05810604c8f1ecebe35a8676df7371487ec80513 (patch) | |
| tree | 0c83bc768075f8bc39f1b7a90bc7d00b1de85374 /src/libnative | |
| parent | d6a39419dbcb2e31ce0711440eab3e8155e69286 (diff) | |
| download | rust-05810604c8f1ecebe35a8676df7371487ec80513.tar.gz rust-05810604c8f1ecebe35a8676df7371487ec80513.zip | |
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.
Diffstat (limited to 'src/libnative')
| -rw-r--r-- | src/libnative/io/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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()), } } |
