Skip to content

Commit

Permalink
vfs: updated dispatch table with mmap() and msync()
Browse files Browse the repository at this point in the history
  • Loading branch information
jewelcodes committed Nov 30, 2024
1 parent f7d0413 commit 6890731
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions fs/vfs/src/dispatch.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,4 +124,14 @@ void (*vfsDispatchTable[])(SyscallHeader *) = {
vfsDispatchIoctl, // 7 - ioctl()
vfsDispatchOpendir, // 8 - opendir()
vfsDispatchReaddir, // 9 - readdir_r()
NULL, // 10 - chmod()
NULL, // 11 - chown()
NULL, // 12 - link()
NULL, // 13 - mkdir()
NULL, // 14 - rmdir()

NULL, NULL, NULL, // 15, 16, 17 - irrelevant to vfs

NULL, // 18 - mmap()
NULL, // 19 - msync()
};

0 comments on commit 6890731

Please sign in to comment.