Address minor warts
* Mention the need to have `nasm` available on the PATH in the README * Replace the deprecated `hide_parse_errors` by `show_parse_errors` in `rustfmt.toml` * Mark unused variables in `src/scheme/proc.rs`
This commit is contained in:
parent
8dcf850919
commit
ea0356b26a
|
@ -6,6 +6,10 @@ Redox OS Microkernel
|
|||
[](https://github.com/XAMPPRocky/tokei)
|
||||
[](./LICENSE)
|
||||
|
||||
## Requirements
|
||||
|
||||
* [`nasm`](https://nasm.us/) needs to be available on the PATH at build time.
|
||||
|
||||
## Building The Documentation
|
||||
|
||||
Use this command:
|
||||
|
|
|
@ -8,7 +8,7 @@ fn_single_line = false # default
|
|||
force_explicit_abi = true # default
|
||||
format_strings = false # default
|
||||
hard_tabs = false # default
|
||||
hide_parse_errors = false # default
|
||||
show_parse_errors = true # default
|
||||
imports_granularity = "Crate" # default = Preserve
|
||||
imports_indent = "Block" # default
|
||||
imports_layout = "Mixed" # default
|
||||
|
|
|
@ -532,7 +532,7 @@ impl<const FULL: bool> KernelScheme for ProcScheme<FULL> {
|
|||
match handle {
|
||||
Handle::Process {
|
||||
kind: ProcHandle::Trace { pid, .. },
|
||||
process,
|
||||
process: _,
|
||||
} => ptrace::Session::with_session(*pid, |session| {
|
||||
Ok(session.data.lock().session_fevent_flags())
|
||||
}),
|
||||
|
@ -1519,7 +1519,7 @@ impl ContextHandle {
|
|||
}
|
||||
fn kreadoff(
|
||||
&self,
|
||||
id: usize,
|
||||
_id: usize,
|
||||
context: Arc<RwSpinlock<Context>>,
|
||||
buf: UserSliceWo,
|
||||
offset: u64,
|
||||
|
|
Loading…
Reference in New Issue