diff options
Diffstat (limited to 'src/lib/include')
-rw-r--r-- | src/lib/include/syscall.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/lib/include/syscall.h b/src/lib/include/syscall.h index b94c7fd..7579be3 100644 --- a/src/lib/include/syscall.h +++ b/src/lib/include/syscall.h @@ -9,14 +9,16 @@ #include <fs.h> #include <debug.h> +#include <token.h> -typedef int fd_t; -typedef int pid_t; +typedef void (*entry_t)(void*); void dbg_print(const char* str); void yield(); void exit(int code); void usleep(int usecs); +bool new_thread(entry_t entry, void* data); +void exit_thread(); bool mmap(void* addr, size_t size, int mode); bool mmap_file(fd_t file, size_t offset, void* addr, size_t size, int mode); @@ -37,6 +39,10 @@ bool stat_open(fd_t file, stat_t *s); int ioctl(fd_t file, int command, void* data); int get_mode(fd_t file); +fd_pair_t make_channel(bool blocking); +bool gen_token(fd_t file, token_t *tok); +fd_t use_token(token_t *tok); + bool make_fs(const char* name, const char* driver, fd_t source, const char* options); bool fs_add_source(const char* fs, fd_t source, const char* options); bool fs_subfs(const char* name, const char* orig_fs, const char* root, int ok_modes); |