Create a new subdirectory, returning a shared reference
(&mut self, _name: &str)
| 41 | |
| 42 | /// Create a new subdirectory, returning a shared reference |
| 43 | fn make_dir(&mut self, _name: &str) -> Result<Arc<RwLock<dyn DirLike + Sync + Send>>, syscalls::SyscallError> { |
| 44 | Err(syscalls::SYSCALL_ERROR_NOT_IMPLEMENTED) |
| 45 | } |
| 46 | |
| 47 | /// Create a new file, returning a shared reference |
| 48 | fn make_file(&mut self, _name: &str) -> Result<Arc<RwLock<dyn FileLike + Sync + Send>>, syscalls::SyscallError> { |