1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-25 01:02:05 +03:00
Files
postgres/src/port/noblock.c
Bruce Momjian ca3b37487b Update copyright for 2021
Backpatch-through: 9.5
2021-01-02 13:06:25 -05:00

67 lines
1.4 KiB
C

/*-------------------------------------------------------------------------
*
* noblock.c
* set a file descriptor as blocking or non-blocking
*
* Portions Copyright (c) 1996-2021, 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
}