Virtual File System #4

Closed
opened 2022-12-23 08:59:57 +00:00 by juju · 0 comments
Owner

Implement a virtual file system to support multiple mount points.

// Use a FileSystem trait to define the open and close interface:

pub trait FileSystem {
    async fn open(...) -> FDt;
    async fn close(fd: FDt);
}
Implement a virtual file system to support multiple mount points. ```rust // Use a FileSystem trait to define the open and close interface: pub trait FileSystem { async fn open(...) -> FDt; async fn close(fd: FDt); } ```
juju added the
Feature
label 2022-12-23 09:01:16 +00:00
juju added reference vfs 2022-12-23 18:50:27 +00:00
juju closed this issue 2022-12-25 16:09:54 +00:00
Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: juju/JuliOS#4
No description provided.