mirror of
https://github.com/libretro/RetroArch
synced 2025-04-16 08:43:10 +00:00
parent
0d2b9fe68c
commit
ac2fe3896e
@ -126,11 +126,11 @@ int socket_receive_all_blocking(int fd, void *data_, size_t size)
|
|||||||
bool socket_set_block(int fd, bool block)
|
bool socket_set_block(int fd, bool block)
|
||||||
{
|
{
|
||||||
#if defined(__CELLOS_LV2__) || defined(VITA) || defined(WIIU)
|
#if defined(__CELLOS_LV2__) || defined(VITA) || defined(WIIU)
|
||||||
int i = block;
|
int i = !block;
|
||||||
setsockopt(fd, SOL_SOCKET, SO_NBIO, &i, sizeof(int));
|
setsockopt(fd, SOL_SOCKET, SO_NBIO, &i, sizeof(int));
|
||||||
return true;
|
return true;
|
||||||
#elif defined(_WIN32)
|
#elif defined(_WIN32)
|
||||||
u_long mode = block;
|
u_long mode = !block;
|
||||||
return ioctlsocket(fd, FIONBIO, &mode) == 0;
|
return ioctlsocket(fd, FIONBIO, &mode) == 0;
|
||||||
#else
|
#else
|
||||||
return fcntl(fd, F_SETFL, (fcntl(fd, F_GETFL) & ~O_NONBLOCK) | (block ? 0 : O_NONBLOCK)) == 0;
|
return fcntl(fd, F_SETFL, (fcntl(fd, F_GETFL) & ~O_NONBLOCK) | (block ? 0 : O_NONBLOCK)) == 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user