将文件描述符设置为非阻塞

int setnonblocking(int fd)
{
    int old_option=fcntl(fd,F_GETFL);
    int new_option=old_option|O_NONBLOCK;
    fcntl(fd,F_SETFL,new_option);
    return old_option;
}
以后肯定会经常用到,所以先记下来!

你可能感兴趣的:(将文件描述符设置为非阻塞)