- 28 Jul, 2020 10 commits
-
-
ReinUsesLisp authored
Testing shows that Poll called with zero entries returns -1 and signals an errno of zero.
-
ReinUsesLisp authored
This implements: Socket, Poll, Accept, Bind, Connect, GetPeerName, GetSockName, Listen, Fcntl, SetSockOpt, Shutdown, Recv, RecvFrom, Send, SendTo, Write, and Close The implementation was done referencing: SwIPC, switchbrew, testing with libnx and inspecting its code, general information about bsd sockets online, and analysing official software. Not everything from these service calls is implemented, but everything that is not implemented will be logged in some way.
-
ReinUsesLisp authored
Manage worker threads with an easy to use abstraction. We can expand this to support thread deletion in the future.
-
ReinUsesLisp authored
This abstraction allows executing blocking functions (like recvfrom on a socket configured for blocking) without blocking the service thread. It is intended to be used with SleepClientThread.
-
ReinUsesLisp authored
These functions translate from Network enumerations/structures to guest enumerations/structures and viceversa.
-
ReinUsesLisp authored
Add guest enumerations and structures used in socket services
-
ReinUsesLisp authored
This is trivially implemented using the Network abstraction - Used by ftpd
-
bunnei authored
core_timing: Make use of uintptr_t to represent user_data
-
bunnei authored
qt_themes: Set QLabel background color to transparent for Dark and Midnight Blue themes
-
Lioncash authored
Makes the interface future-proofed for supporting other platforms in the event we ever support platforms with differing pointer sizes. This way, we have a type in place that is always guaranteed to be able to represent a pointer exactly.
-
- 27 Jul, 2020 5 commits
-
-
bunnei authored
vulkan: Resolve -Wmissing-field-initializer warnings
-
bunnei authored
AM: GetDesiredLanguage: remove unused variable
-
Rodrigo Locatti authored
video_core/gpu: Correct the size of the puller registers
-
CrazyMax authored
-
bunnei authored
GCAdapter: only join worker thread if running & joinable
-
- 26 Jul, 2020 8 commits
-
-
Brian J. Tarricone authored
-
Billy Laws authored
The puller register array is made up of u32s however the `NUM_REGS` value is the size in bytes, so switch it to avoid making the struct unnecessary large. Also fix a small typo in a comment.
-
bunnei authored
nvflinger: Use return value of Lock()
-
bunnei authored
udp/client: Remove unused boost include
-
bunnei authored
virtual_buffer: Mark size parameter of FreeMemoryPages() as [[maybe_unused]]
-
bunnei authored
gc_adapter/gc_poller: Resolve compiler warnings
-
LC authored
yuzu/configure_debug: Remove duplicated checkboxes
-
FearlessTobi authored
Those are already found in the Filesystem tab. They were added back to the Debug tab by mistake in the Vulkan PR.
-
- 25 Jul, 2020 16 commits
-
-
Lioncash authored
Not using the return value of these functions are undeniably the source of a bug. This way we allow compilers to loudly make any future misuses evident.
-
Lioncash authored
comex reported in #4424 that we were incorrectly discarding the return value of Lock() which is correct.
-
bunnei authored
hid: Only update keyboard & debug pad inputs if enabled
-
LC authored
This function was relocated to log.h as a constexpr function, so this can be removed.
-
lat9nq authored
Fixes the override highlights in per-game settings from looking weird when viewed on the Dark or Midnight Blue themes by setting QLabels to have transparent backgrounds by default. Also apparently adds a newline to the end of the Dark theme's qss file.
-
Lioncash authored
-
Lioncash authored
Also silences a deprecation warning from boost on Clang/GCC.
-
Lioncash authored
-
Lioncash authored
-
Lioncash authored
-
Lioncash authored
This isn't used on Windows, but is used on non-Windows operating systems.
-
bunnei authored
swkbd: Return result for Calc request for inlined swkbd
-
bunnei authored
frontend: Match indeterminate checkbox state with light theme
-
bunnei authored
vk_rasterizer: Remove unused variable in Clear()
-
bunnei authored
qt-themes: Add Midnight Blue qdarkstyle theme (2.8.1)
-
bunnei authored
configure_per_game: Clearer per-game settings
-
- 24 Jul, 2020 1 commit
-
-
bunnei authored
buffer_cache: Eliminate redundant map lookup in MarkRegionAsWritten()
-