Lookup and remove file, returning the shared reference
(&mut self, _name: &str)
| 54 | } |
| 55 | /// Lookup and remove file, returning the shared reference |
| 56 | fn remove_file(&mut self, _name: &str) -> Result<Arc<RwLock<dyn FileLike + Sync + Send>>, syscalls::SyscallError> { |
| 57 | Err(syscalls::SYSCALL_ERROR_NOT_IMPLEMENTED) |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | /// Open a file or directory |