We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4acb0aa + bda208a commit 3175cffCopy full SHA for 3175cff
library/std/src/os/xous/ffi.rs
@@ -612,7 +612,7 @@ pub(crate) fn thread_id() -> Result<ThreadId, Error> {
612
/// An error is generated if the `knob` is not a valid limit, or if the call
613
/// would not succeed.
614
pub(crate) fn adjust_limit(knob: Limits, current: usize, new: usize) -> Result<usize, Error> {
615
- let mut a0 = Syscall::JoinThread as usize;
+ let mut a0 = Syscall::AdjustProcessLimit as usize;
616
let mut a1 = knob as usize;
617
let a2 = current;
618
let a3 = new;
0 commit comments