mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-05 08:10:10 +01:00
implement cross process dmem support implement ipmi try send message implement sys_batch_map store saves to game directory (.rpcsx subfolder) fix get dir entries added uvd & vce devices
53 lines
1.4 KiB
C++
53 lines
1.4 KiB
C++
#include "io-device.hpp"
|
|
#include "orbis/KernelAllocator.hpp"
|
|
#include "orbis/file.hpp"
|
|
#include "orbis/thread/Thread.hpp"
|
|
#include "orbis/uio.hpp"
|
|
#include "orbis/utils/Logs.hpp"
|
|
#include <bits/types/struct_iovec.h>
|
|
#include <chrono>
|
|
#include <thread>
|
|
|
|
struct AoutFile : orbis::File {};
|
|
|
|
static orbis::ErrorCode aout_ioctl(orbis::File *file, std::uint64_t request,
|
|
void *argp, orbis::Thread *thread) {
|
|
|
|
ORBIS_LOG_FATAL("Unhandled aout ioctl", request);
|
|
if (request == 0xc004500a) {
|
|
std::this_thread::sleep_for(std::chrono::days(1));
|
|
}
|
|
thread->where();
|
|
return {};
|
|
}
|
|
|
|
static orbis::ErrorCode aout_write(orbis::File *file, orbis::Uio *uio,
|
|
orbis::Thread *) {
|
|
for (auto entry : std::span(uio->iov, uio->iovcnt)) {
|
|
uio->offset += entry.len;
|
|
}
|
|
return {};
|
|
}
|
|
|
|
static const orbis::FileOps fileOps = {
|
|
.ioctl = aout_ioctl,
|
|
.write = aout_write,
|
|
};
|
|
|
|
struct AoutDevice : IoDevice {
|
|
orbis::ErrorCode open(orbis::Ref<orbis::File> *file, const char *path,
|
|
std::uint32_t flags, std::uint32_t mode,
|
|
orbis::Thread *thread) override {
|
|
ORBIS_LOG_FATAL("aout device open", path, flags, mode);
|
|
auto newFile = orbis::knew<AoutFile>();
|
|
newFile->ops = &fileOps;
|
|
newFile->device = this;
|
|
thread->where();
|
|
|
|
*file = newFile;
|
|
return {};
|
|
}
|
|
};
|
|
|
|
IoDevice *createAoutCharacterDevice() { return orbis::knew<AoutDevice>(); }
|