early-access version 1400

main
pineappleEA 2021-01-31 11:24:28 +01:00
parent 16af47109c
commit 38d692efe5
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
yuzu emulator early access
=============
This is the source code for early-access 1399.
This is the source code for early-access 1400.
## Legal Notice

View File

@ -421,11 +421,11 @@ void BSD::Close(Kernel::HLERequestContext& ctx) {
}
void BSD::EventFd(Kernel::HLERequestContext& ctx) {
LOG_WARNING(Service, "(STUBBED) called");
IPC::RequestParser rp{ctx};
const s32 fd = rp.Pop<s32>();
const u64 initval = rp.Pop<u64>();
const u32 flags = rp.Pop<u32>();
LOG_DEBUG(Service, "called. fd={}", fd);
LOG_WARNING(Service, "(STUBBED) called. initval={}, flags={}", initval, flags);
BuildErrnoResponse(ctx, Errno::SUCCESS);
}