Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/felix86/hle/syscall.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1407,6 +1407,14 @@ Result felix86_syscall_common(felix86_frame* frame, int rv_syscall, u64 arg1, u6
result = Filesystem::FChownAt(arg1, (const char*)arg2, arg3, arg4, arg5);
break;
}
case felix86_riscv64_ioprio_get: {
result = SYSCALL(ioprio_get, arg1, arg2, arg3, arg4, arg5, arg6);
break;
}
case felix86_riscv64_ioprio_set: {
result = SYSCALL(ioprio_set, arg1, arg2, arg3, arg4, arg5, arg6);
break;
}
case felix86_riscv64_sync_file_range: {
result = SYSCALL(sync_file_range, arg1, arg2, arg3, arg4, arg5, arg6);
break;
Expand Down
4 changes: 2 additions & 2 deletions src/felix86/hle/syscalls_common_32.inc
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ X(socket)
X(bind)
X(connect)
X(listen)
X(ioprio_get)
X(ioprio_set)
X(accept4)
X(getsockname)
X(getpeername)
Expand Down Expand Up @@ -164,8 +166,6 @@ X(splice)
// X(io_getevents)
// X(io_setup)
// X(io_submit)
// X(ioprio_get)
// X(ioprio_set)
// X(kexec_load)
// X(lookup_dcookie)
// X(lseek)
Expand Down
Loading