非阻塞IO
方法一
int fd=open("/dev/tty",O_RDWR|O_NONBLOCK);
方法二
//fcntl()函数,设置非阻塞
int flags = fcntl(fd,F_GETFL);
flags |= O_NONBLOCK;
fcntl(fd,F_SETFL,flags);
2022-12-20 19:19:06
int fd=open("/dev/tty",O_RDWR|O_NONBLOCK);
//fcntl()函数,设置非阻塞
int flags = fcntl(fd,F_GETFL);
flags |= O_NONBLOCK;
fcntl(fd,F_SETFL,flags);