1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-26 12:21:12 +03:00
Files
postgres/src/port/noblock.c
Bruce Momjian 7559d8ebfa Update copyrights for 2020
Backpatch-through: update all files in master, backpatch legal files through 9.4
2020-01-01 12:21:45 -05:00

67 lines
1.4 KiB
C

/*-------------------------------------------------------------------------
*
* noblock.c
* set a file descriptor as blocking or non-blocking
*
* Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* src/port/noblock.c
*
*-------------------------------------------------------------------------
*/
#include "c.h"
#include <fcntl.h>
/*
* Put socket into nonblock mode.
* Returns true on success, false on failure.
*/
bool
pg_set_noblock(pgsocket sock)
{
#if !defined(WIN32)
int flags;
flags = fcntl(sock, F_GETFL);
if (flags < 0)
return false;
if (fcntl(sock, F_SETFL, (flags | O_NONBLOCK)) == -1)
return false;
return true;
#else
unsigned long ioctlsocket_ret = 1;
/* Returns non-0 on failure, while fcntl() returns -1 on failure */
return (ioctlsocket(sock, FIONBIO, &ioctlsocket_ret) == 0);
#endif
}
/*
* Put socket into blocking mode.
* Returns true on success, false on failure.
*/
bool
pg_set_block(pgsocket sock)
{
#if !defined(WIN32)
int flags;
flags = fcntl(sock, F_GETFL);
if (flags < 0)
return false;
if (fcntl(sock, F_SETFL, (flags & ~O_NONBLOCK)) == -1)
return false;
return true;
#else
unsigned long ioctlsocket_ret = 0;
/* Returns non-0 on failure, while fcntl() returns -1 on failure */
return (ioctlsocket(sock, FIONBIO, &ioctlsocket_ret) == 0);
#endif
}