core: implement GetGaiStringErrorRequest, IContextRegistrar

This commit is contained in:
Liam
2023-07-22 23:29:45 -04:00
parent 3e4029b238
commit 3e3294e1c2
10 changed files with 115 additions and 5 deletions

View File

@ -559,7 +559,7 @@ std::pair<s32, Errno> BSD::PollImpl(std::vector<u8>& write_buffer, std::span<con
const std::optional<FileDescriptor>& descriptor = file_descriptors[pollfd.fd];
if (!descriptor) {
LOG_ERROR(Service, "File descriptor handle={} is not allocated", pollfd.fd);
LOG_TRACE(Service, "File descriptor handle={} is not allocated", pollfd.fd);
pollfd.revents = PollEvents::Nval;
return {0, Errno::SUCCESS};
}