Rename read syscall, vfs_read and so to xxx_read_file

This commit is contained in:
2026-03-01 00:29:04 +01:00
parent 0533c2705d
commit a3b98fcaa2
12 changed files with 41 additions and 41 deletions

View File

@@ -45,8 +45,8 @@ int volume_open (const char* volume) { return (int)do_syscall (SYS_VOLUME_OPEN,
int volume_close (void) { return (int)do_syscall (SYS_VOLUME_CLOSE, 0); }
int read (const char* path, size_t off, uint8_t* buffer, size_t size) {
return (int)do_syscall (SYS_READ, path, off, buffer, size);
int read_file (const char* path, size_t off, uint8_t* buffer, size_t size) {
return (int)do_syscall (SYS_READ_FILE, path, off, buffer, size);
}
int describe (const char* path, struct desc* desc) {