| Age | Commit message (Collapse) | Author | Lines |
|
Also fixes some conflicting module names.
Signed-off-by: Peter Atashian <retep998@gmail.com>
|
|
|
|
The same goes for sys::fs::FileDesc::fstat() on Windows.
Signed-off-by: NODA, Kai <nodakai@gmail.com>
|
|
All of the enum components had a redundant 'Type' specifier: TypeSymlink, TypeDirectory, TypeFile. This change removes them, replacing them with a namespace: FileType::Symlink, FileType::Directory, and FileType::RegularFile.
RegularFile is used instead of just File, as File by itself could be mistakenly thought of as referring to the struct.
[breaking-change]
|
|
|
|
This patch continues the runtime removal by moving and refactoring the
process implementation into the new `sys` module.
Because this eliminates APIs in `libnative` and `librustrt`, it is a:
[breaking-change]
This functionality is likely to be available publicly, in some form,
from `std` in the future.
|