mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
13 lines
219 B
C
13 lines
219 B
C
|
#include <fcntl.h>
|
||
|
#include "blocking.h"
|
||
|
|
||
|
void blocking_enable(int fd)
|
||
|
{
|
||
|
fcntl(fd,F_SETFL,fcntl(fd,F_GETFL,0) & ~O_NONBLOCK);
|
||
|
}
|
||
|
|
||
|
void blocking_disable(int fd)
|
||
|
{
|
||
|
fcntl(fd,F_SETFL,fcntl(fd,F_GETFL,0) | O_NONBLOCK);
|
||
|
}
|