首页 > 代码库 > 用fcntl()设置阻塞函数的阻塞性质
用fcntl()设置阻塞函数的阻塞性质
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <unistd.h> #define ERR_EXIT(m) do { perror(m); exit(EXIT_FAILURE); }while(0) void activate_nonblock(int fd); void deactivate_nonblock(int fd); int main(int argc, const char *argv[]) { activate_nonblock(STDIN_FILENO); char buffer[1024] = {0}; int ret = read(STDIN_FILENO, buffer, 1024); if(ret == -1) printf("read"); return 0; } void activate_nonblock(int fd) { int ret; int flags = fcntl(fd, F_GETFL); if(flags == -1) ERR_EXIT("fcntl"); flags |= O_NONBLOCK; ret = fcntl(fd, F_SETFL, flags); if(ret == -1) ERR_EXIT("fcntl"); } void deactivate_nonblock(int fd) { int ret; int flags = fcntl(fd, F_GETFL); if(flags == -1) ERR_EXIT("fcntl"); flags &=~O_NONBLOCK; ret = fcntl(fd, F_SETFL, flags); if(ret == -1) ERR_EXIT("fcntl"); }
用fcntl()设置阻塞函数的阻塞性质
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。