nx_fio.nx
buildroot/runtime/nx_fio.nx
about
nx_fio.nx -- canonical sovereign file operations: unlink (delete) + existence check. Importable (no main).
Retires Remove-Item / rm. rename is already canonical (sys_renameat in nx_syscalls). unlinkat x86_64=263 is passed
DIRECTLY (the fsync-74 / fstatat-262 / unlinkat-263 precedent: a raw x86_64 number not in the rv64->x86 swap table
passes through untranslated). AT_FDCWD=-100, flags=0. Returns 0 on success, -errno on failure. license_tier: ORIGINAL
dependencies 1 imports · 6 importers
imports: nx_syscalls.nx
imported by: nx_daemon_gate.nxnx_fileop.nxnx_fileop_gate.nxnx_fsops_gate.nxnx_mgmt_api.nxnx_mgmt_upload_gate.nx
structs
| none |
consts
| none |
functions
| 8 | func fio_unlink(path: *u8) -> i64 { return __syscall(263, 0 - 100, path as i64, 0, 0, 0, 0) } |
| 11 | func fio_exists(path: *u8) -> i64 |