Starry-OS / Starry

The main repository of Starry-OS, which will assemble all kernel components into a kernel according to a certain configuration.
Apache License 2.0
12 stars 18 forks source link

dev/shm 支持 #12

Closed Azure-stars closed 1 month ago

Azure-stars commented 1 month ago

dev/shm 是 unix 系统下用内存页替代文件的一个实现,在里面创建的文件以及读写操作均只会在内存页上进行,当页被释放则操作则全部失效。对应在 ArceOS 上即是将 ArceOS 原有的 ramfs 挂载到 dev/shm 目录下即可,不过需要对文件读写等进行判断,查看是否是读写 dev/shm 下文件。

Azure-stars commented 1 month ago

涉及 PR: