poll select

编程技术  /  houtizong 发布于 3年前   119
aio相关
http://lse.sourceforge.net/io/aio.html

jfs
http://en.wikipedia.org/wiki/JFS_(file_system)
xfs
http://xfs.org/index.php/XFS_Papers_and_Documentation
------------javaeye挂了还是升级升的不支持chrome14---页面错乱发布了新的
参考http://frenchleaf.iteye.com/blog/779086
apue12章 :
非阻塞io,
1.如果是调用o p e n以获得该描述符,则可指定O_NONBLOCK标志
2.对于已经打开的一个描述符,则可调用f c n t l打开O_NONBLOCK文件状态标志
源码指向fig14.1:/apue.2e/advio/nonblockw.c
./nonblockw </etc/termcap >temp.file
#include "apue.h"#include <errno.h>#include <fcntl.h>char    buf[500000];intmain(void){        int             ntowrite, nwrite;        char    *ptr;        ntowrite = read(STDIN_FILENO, buf, sizeof(buf));        fprintf(stderr, "read %d bytes\n", ntowrite);        set_fl(STDOUT_FILENO, O_NONBLOCK);      /* set nonblocking */        ptr = buf;        while (ntowrite > 0) {                errno = 0;                nwrite = write(STDOUT_FILENO, ptr, ntowrite);                fprintf(stderr, "nwrite = %d, errno = %d\n", nwrite, errno);                if (nwrite > 0) {                        ptr += nwrite;                        ntowrite -= nwrite;                }        }        clr_fl(STDOUT_FILENO, O_NONBLOCK);      /* clear nonblocking */        exit(0);}

flock锁:
fig14.6 -> lib/locktest.c

请勿发布不友善或者负能量的内容。与人为善,比聪明更重要!

留言需要登陆哦

技术博客集 - 网站简介:
前后端技术:
后端基于Hyperf2.1框架开发,前端使用Bootstrap可视化布局系统生成

网站主要作用:
1.编程技术分享及讨论交流,内置聊天系统;
2.测试交流框架问题,比如:Hyperf、Laravel、TP、beego;
3.本站数据是基于大数据采集等爬虫技术为基础助力分享知识,如有侵权请发邮件到站长邮箱,站长会尽快处理;
4.站长邮箱:[email protected];

      订阅博客周刊 去订阅

文章归档

文章标签

友情链接

Auther ·HouTiZong
侯体宗的博客
© 2020 zongscan.com
版权所有ICP证 : 粤ICP备20027696号
PHP交流群 也可以扫右边的二维码
侯体宗的博客