快速业务通道

linux 记录

作者 佚名技术 来源 Linux系统 浏览 发布时间 2012-04-06

1.IO


O_WRONLY|O_CREAT|O_TRUNC
int open(const char *name,int flags);
int open(const char *name,int flags,mode_t mode);
creat()
int fd;
fd=creat(file,0644)


#include <unistd.h>
ssize_t read(int fd,void *buf,size_t len);

非阻挡式读取操作

read() 的调用在尚无数据可用时受到阻挡,让调用立即返回,指出尚无数据可用这成为非阻挡式I/O

ssize_t 类型是int 有符号 返回值为-1


#include <unistd.h>
ssize_t write (int fd,const void *buf,size_t count)

EINTR
EAGAIN
ENIVAL 指定的文件描述符被映射到一个不允许写入操作的对象
#include <unistd.h>
int fsync(int fd);
EBADF 所指定文件描述符无效或者未打开以备写入
sync()

O_SYNC 会让写入操作的用户时间和内核时间略微变差

int close(int fd);

#include <sys/types.h>
#include <unistd.h>
off_t lseek(int fd,off_t pos,int origin)
origin SEEK_CUR SEEK_END SEEK_SET


linux 提供read() 和 write()的变体
pread(int fd,void *buf,size_t count,off_t pos);
pwrite(int fd,void *buf,size_t count,off_t pos);
截短文件的系统调用
#include <unistd.h>
#include <sys/types.h>
int ftruncate(int fd,off_t len);
int truncate(const char*path,off_t len);

linux 提供了三种多任务IO解决方案 多任务IO让一个应用程序可以同时服务多个文件描述符,以及在其中有任何一个就绪都可以读取或者写入时收到通知而不会受到阻拦
select poll epoll
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>

Empire CMS,phome.net

int select (int n,fd_set *readfds,fd_set *writefds,fd_set *exceptfds,struct timeval *timeout)

poll() 系统调用 解决了select()的若干缺点
#include <sys/poll.h>
int poll(struct pollfd *fds,unsigned int nfds,int timeout);
struct pollfd{
int fd;
short events;
short revents;
};

VFS 单一系统调用可以读区任何存储媒介上的任何操作系统 当一个应用程序进行read()系统调用时,C链接库所提供的系统定义在编译时会被转换为适当的trap
语句.当一个用户空间进程陷入内核后,控制权会通过系统调用处理程序交给read()系统调用,于是内核可以找出支持所指定的文件描述符的是何种对象.然后内核会调用与
背后对象相应的读取函数.对文件系统而言,此函数是文件系统程序代码的一部分,它会左它该做的事情并且将数据返回给用户空间的read()调用.于是会从系统调用程序返回,
而系统调用处理程序会将数据复制回用户空间,接着从用户空间的read()系统调用返回,然后进程会继续执行


#inlcude <stdio.h>
FILE *fopen(const char *path,const char *mode)
int fgetc (FILE *stream)
int ungetc(int c,FILE *stream)
char *fgets (char *str,int size,FILE *stream)
int fputc(int c,FILE *stream)
int fputs(const char *str,FILE *stream)
size_t fwrite(void *buf,sizez_t size,size_t nr,FILE *stream);
int fseek(FILE *stream,long offset,int whence);
rewind(stream) = fseek(stream,0,SEEK_SET)



Empire CMS,phome.net

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号