Add mknod() and named pipes

This commit is contained in:
Mark
2020-07-05 17:13:38 +03:00
parent d446846ba6
commit 061d514beb
10 changed files with 153 additions and 1 deletions
+2
View File
@@ -1,5 +1,7 @@
#pragma once
struct ofile;
struct vnode;
int pipe_create(struct ofile **read, struct ofile **write);
int pipe_fifo_create(struct vnode *res);