在哪里可以找到 RISC-V 的系统调用号

Where can I find system call number for RISC-V

我正在尝试做一些底层的东西,所以我需要知道 riscv32 平台上 open 的系统调用号。

唯一接近我的问题的是here,但它没有显示open的数量。

改用openat (AT_FDCWD, ...)。为第一个参数 dirfd 传递 AT_FDCWD 参数使其执行与 open 完全相同。其余参数同open.