-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8d1b1e0
commit c3a1fe4
Showing
5 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
Submodule kernel
updated
16 files
+2 −2 | Makefile | |
+4 −4 | readme.md | |
+99 −0 | src/file.c | |
+12 −3 | src/include/kernel/file.h | |
+11 −0 | src/include/kernel/io.h | |
+35 −1 | src/include/kernel/servers.h | |
+3 −0 | src/include/kernel/socket.h | |
+1 −0 | src/include/sys/stat.h | |
+67 −0 | src/io.c | |
+81 −9 | src/ipc/sockinit.c | |
+3 −0 | src/main.c | |
+11 −4 | src/platform/x86_64/lock.asm | |
+1 −1 | src/platform/x86_64/rand.c | |
+12 −1 | src/servers/general.c | |
+43 −2 | src/servers/syscalls.c | |
+86 −4 | src/syscalls/dispatch.c |
Submodule lucerna
updated
4 files
+2 −2 | Makefile | |
+26 −0 | src/include/fnctl.h | |
+2 −0 | src/include/unistd.h | |
+46 −0 | src/platform/x86_64-lux/syscalls.c |
Submodule servers
updated
16 files
+1 −1 | fs/devfs/Makefile | |
+1 −1 | fs/devfs/src/device.c | |
+16 −0 | fs/devfs/src/devices/null.c | |
+27 −0 | fs/devfs/src/devices/random.c | |
+18 −0 | fs/devfs/src/devices/zero.c | |
+5 −0 | fs/devfs/src/dispatch.c | |
+6 −2 | fs/devfs/src/include/devfs/devfs.h | |
+45 −0 | fs/devfs/src/io.c | |
+4 −4 | fs/devfs/src/main.c | |
+44 −0 | fs/devfs/src/open.c | |
+1 −1 | fs/vfs/Makefile | |
+27 −0 | fs/vfs/src/dispatch.c | |
+15 −0 | fs/vfs/src/servers.c | |
+1 −1 | liblux/Makefile | |
+22 −0 | liblux/src/client.c | |
+37 −1 | liblux/src/include/liblux/liblux.h |