mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 14:37:08 +00:00
[rpcsx-os] fork: implement vm and vfs fork
stub metadbg device implement notification device implement sys_pipe
This commit is contained in:
parent
39092c7f16
commit
525ef02e8a
22 changed files with 379 additions and 76 deletions
13
orbis-kernel/include/orbis/pipe.hpp
Normal file
13
orbis-kernel/include/orbis/pipe.hpp
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#pragma once
|
||||
|
||||
#include "KernelAllocator.hpp"
|
||||
#include "file.hpp"
|
||||
#include "utils/Rc.hpp"
|
||||
|
||||
namespace orbis {
|
||||
struct Pipe final : File {
|
||||
kvector<std::byte> data;
|
||||
};
|
||||
|
||||
Ref<Pipe> createPipe();
|
||||
} // namespace orbis
|
||||
Loading…
Add table
Add a link
Reference in a new issue