mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Fix unused function warnings
This commit is contained in:
@ -33,7 +33,7 @@
|
|||||||
|
|
||||||
namespace Common
|
namespace Common
|
||||||
{
|
{
|
||||||
#if !defined(_WIN32)
|
#if !defined(_WIN32) && defined(_M_X86_64) && !defined(MAP_32BIT)
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
static uintptr_t RoundPage(uintptr_t addr)
|
static uintptr_t RoundPage(uintptr_t addr)
|
||||||
{
|
{
|
||||||
|
@ -122,6 +122,7 @@ bool CEXIETHERNET::SendFrame(const u8* frame, u32 size)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef __linux__
|
||||||
static void ReadThreadHandler(CEXIETHERNET* self)
|
static void ReadThreadHandler(CEXIETHERNET* self)
|
||||||
{
|
{
|
||||||
while (!self->readThreadShutdown.IsSet())
|
while (!self->readThreadShutdown.IsSet())
|
||||||
@ -150,6 +151,7 @@ static void ReadThreadHandler(CEXIETHERNET* self)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
bool CEXIETHERNET::RecvInit()
|
bool CEXIETHERNET::RecvInit()
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user