diff options
| author | Valentin <[email protected]> | 2018-06-15 18:57:24 +0200 |
|---|---|---|
| committer | FenrirWolf <[email protected]> | 2018-06-15 10:57:24 -0600 |
| commit | f2a90174bb36b9ad528e863ab34c02ebce002b02 (patch) | |
| tree | 959e8d67883d3a89e179b3549b1f30d28e51a87c /ctr-std/src/sys/unix/ext/mod.rs | |
| parent | Merge pull request #68 from linouxis9/master (diff) | |
| download | archived-ctru-rs-f2a90174bb36b9ad528e863ab34c02ebce002b02.tar.xz archived-ctru-rs-f2a90174bb36b9ad528e863ab34c02ebce002b02.zip | |
Update for latest nightly 2018-06-09 (#70)
* Update for latest nightly 2018-06-09
* We now have a proper horizon os and sys modules in libstd
Diffstat (limited to 'ctr-std/src/sys/unix/ext/mod.rs')
| -rw-r--r-- | ctr-std/src/sys/unix/ext/mod.rs | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/ctr-std/src/sys/unix/ext/mod.rs b/ctr-std/src/sys/unix/ext/mod.rs index 7b0d175..c221f7c 100644 --- a/ctr-std/src/sys/unix/ext/mod.rs +++ b/ctr-std/src/sys/unix/ext/mod.rs @@ -38,11 +38,11 @@ pub mod io; pub mod ffi; -//pub mod fs; -//pub mod process; +pub mod fs; +pub mod process; pub mod raw; -//pub mod thread; -//pub mod net; +pub mod thread; +pub mod net; /// A prelude for conveniently writing platform-specific code. /// @@ -53,14 +53,14 @@ pub mod prelude { pub use super::io::{RawFd, AsRawFd, FromRawFd, IntoRawFd}; #[doc(no_inline)] #[stable(feature = "rust1", since = "1.0.0")] pub use super::ffi::{OsStrExt, OsStringExt}; - //#[doc(no_inline)] #[stable(feature = "rust1", since = "1.0.0")] - //pub use super::fs::{PermissionsExt, OpenOptionsExt, MetadataExt, FileTypeExt}; - //#[doc(no_inline)] #[stable(feature = "rust1", since = "1.0.0")] - //pub use super::fs::DirEntryExt; - //#[doc(no_inline)] #[stable(feature = "file_offset", since = "1.15.0")] - //pub use super::fs::FileExt; - //#[doc(no_inline)] #[stable(feature = "rust1", since = "1.0.0")] - //pub use super::thread::JoinHandleExt; - //#[doc(no_inline)] #[stable(feature = "rust1", since = "1.0.0")] - //pub use super::process::{CommandExt, ExitStatusExt}; + #[doc(no_inline)] #[stable(feature = "rust1", since = "1.0.0")] + pub use super::fs::{PermissionsExt, OpenOptionsExt, MetadataExt, FileTypeExt}; + #[doc(no_inline)] #[stable(feature = "rust1", since = "1.0.0")] + pub use super::fs::DirEntryExt; + #[doc(no_inline)] #[stable(feature = "file_offset", since = "1.15.0")] + pub use super::fs::FileExt; + #[doc(no_inline)] #[stable(feature = "rust1", since = "1.0.0")] + pub use super::thread::JoinHandleExt; + #[doc(no_inline)] #[stable(feature = "rust1", since = "1.0.0")] + pub use super::process::{CommandExt, ExitStatusExt}; } |