[FS] Pipes

This commit is contained in:
2017-03-20 15:07:07 +01:00
parent fd782365b7
commit 4bb9021885
8 changed files with 238 additions and 2 deletions

View File

@@ -46,6 +46,7 @@ SYSCALL_DECL(read);
SYSCALL_DECL(write);
SYSCALL_DECL(isatty);
SYSCALL_DECL(seek);
SYSCALL_DECL(pipe);
SYSCALL_DECL(brk);

View File

@@ -59,3 +59,4 @@ void fs_umount(const char *path);
file_t *fs_namef(const char *path);
file_t debug_file;
int pipe(file_t **reader, file_t **writer);