index
:
camellia
main
Unnamed repository; edit this file 'description' to name the repository.
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
shared
Age
Commit message (
Expand
)
Author
2022-04-10
kernel/driver: modify the ps2/serial drivers to use ring_t
dzwdz
2022-04-10
shared: implement a basic ring buffer
dzwdz
2022-03-27
shared/memcpy: copy in 4byte blocks
dzwdz
2022-03-27
shared/syscalls: change some pointer types to void*
dzwdz
2022-03-06
shared: add strcmp() testcases, fix invalid implementation
dzwdz
2021-11-26
shared: move `enum vfs_operation` to types.h
dzwdz
2021-11-20
kernel: fs_wait returns a success val; the op type is put in the struct
dzwdz
2021-11-16
kernel/vfs: add a capacity field to fs_wait_response
dzwdz
2021-11-14
shared: move the str* implementations to shared/mem.c
dzwdz
2021-11-14
shared: use a single implementation of mem* functions everywhere
dzwdz
2021-11-02
fork2() refactor: implement fs_fork2()
dzwdz
2021-11-02
fork2 refactor: every process now has (only) a single controlled vfs_backend
dzwdz
2021-10-04
remove support for processes returning strings on exit
dzwdz
2021-09-21
add `__force` for marking casts across adress spaces
dzwdz
2021-09-20
add an offset parameter to read() and write()
dzwdz
2021-09-20
use a single struct for all fs_wait return values
dzwdz
2021-09-18
put the `handle_t` typedef in `shared/types.h`
dzwdz
2021-09-18
merge `kernel/types.h` and `init/types.h`
dzwdz
2021-09-16
fs_read stub, basic implementation in userland
dzwdz
2021-09-15
fs_wait: pass the file ID too
dzwdz
2021-09-14
merge the `syscall_handler` and `_syscall` declarations
dzwdz
2021-09-12
simplify `fs_respond`'s signature
dzwdz
2021-09-12
move `enum vs_operation` to shared/flags.h
dzwdz
2021-09-12
implement part of `fs_respond`
dzwdz
2021-09-12
barebones `memflag()` implementation - letting the user allocate pages
dzwdz
2021-09-12
remove `shared/vfs.h`, it was unused
dzwdz
2021-09-12
implement most of fs_wait
dzwdz
2021-09-11
replace `user_ptr` with a linux-style `__user` annotation
dzwdz
2021-09-09
basic _syscall_fs_wait() impl, doesn't pass the req yet
dzwdz
2021-09-08
copy _syscall_fs_open's argument to a new buffer instead of a shared one
dzwdz
2021-09-07
implement fs_create(), front/back fs handles
dzwdz
2021-09-05
error out when <*/types.h> isn't included in headers which need it
dzwdz
2021-09-05
remove the fd_ / fs_ prefixes from syscall names
dzwdz
2021-09-05
root vfs: implement writing to /tty
dzwdz
2021-09-04
new vfs impl pt. 1: implement open()
dzwdz
2021-09-04
rename file descriptors to handles
dzwdz
2021-08-25
remove FD_STDOUT
dzwdz
2021-08-25
change the signature of _syscall_fd_mount
dzwdz
2021-08-24
switch to using user_ptr for pointers coming from userland
dzwdz
2021-08-24
replace () with (void) in function definitions
dzwdz
2021-08-24
move syscalls.h to shared/syscalls.h
dzwdz
2021-08-24
implement FD_SPECIAL_TTY, an stdout equalivent
dzwdz