aboutsummaryrefslogtreecommitdiff
path: root/kernel/fs/open.c
diff options
context:
space:
mode:
authorMichael Foiani <mfoiani@cs.brown.edu>2024-05-15 18:17:49 -0400
committerMichael Foiani <mfoiani@cs.brown.edu>2024-05-15 18:17:49 -0400
commit3942ec1841219e9d1033f583ebfcf687cb76a4af (patch)
tree13168b263ee28ce2d0867cac47b0fc90bf23b815 /kernel/fs/open.c
parent77408081bd2622c50d9acbcec18f1c598738fdaa (diff)
FINAfinal submission (for real this time)HEADmaster
Diffstat (limited to 'kernel/fs/open.c')
-rw-r--r--kernel/fs/open.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/kernel/fs/open.c b/kernel/fs/open.c
index e8945de..cf55934 100644
--- a/kernel/fs/open.c
+++ b/kernel/fs/open.c
@@ -62,8 +62,6 @@ long get_empty_fd(int *fd)
*/
long do_open(const char *filename, int oflags)
{
- // NOT_YET_IMPLEMENTED("VFS: do_open");
-
// Check if oflags is valid
if ((oflags & O_WRONLY) && (oflags & O_RDWR))
{