rpcsx/orbis-kernel/include/orbis/pipe.hpp

17 lines
290 B
C++
Raw Normal View History

#pragma once
#include "KernelAllocator.hpp"
#include "file.hpp"
#include "utils/Rc.hpp"
2023-11-13 21:02:23 +01:00
#include "utils/SharedCV.hpp"
#include "utils/SharedMutex.hpp"
namespace orbis {
struct Pipe final : File {
2023-11-13 21:02:23 +01:00
shared_cv cv;
kvector<std::byte> data;
};
Ref<Pipe> createPipe();
} // namespace orbis