diff options
author | Michael Foiani <mfoiani@cs.brown.edu> | 2024-05-15 18:17:49 -0400 |
---|---|---|
committer | Michael Foiani <mfoiani@cs.brown.edu> | 2024-05-15 18:17:49 -0400 |
commit | 3942ec1841219e9d1033f583ebfcf687cb76a4af (patch) | |
tree | 13168b263ee28ce2d0867cac47b0fc90bf23b815 /kernel/fs/open.c | |
parent | 77408081bd2622c50d9acbcec18f1c598738fdaa (diff) |
Diffstat (limited to 'kernel/fs/open.c')
-rw-r--r-- | kernel/fs/open.c | 2 |
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)) { |