mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-22 06:27:51 +00:00
bf9710fd5a
This only affects build_android, if nacl-gcc-prep is run then build/`uname -s` will be created.
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);
|
|
}
|