Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1588996
  • 博文数量: 596
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 173
  • 用 户 组: 普通用户
  • 注册时间: 2016-07-06 15:50
个人简介

在线笔记

文章分类

全部博文(596)

文章存档

2016年(1)

2015年(104)

2014年(228)

2013年(226)

2012年(26)

2011年(11)

发布时间:2014-07-15 11:15:44

http://www.cnblogs.com/my_life/articles/1982091.html 说到重叠模型首先还是提一下异步IO比较好,因为从本质上讲,重叠模型也是一种异步IO模型。       我们知道,相对于计算机执行的其他操作而言,设备IO(文件、管道、套接字等)是比较慢的。于是在多线程结构中就考虑到采用异步.........【阅读全文】

阅读(1714) | 评论(0) | 转发(0)

发布时间:2014-07-15 11:11:10

http://support.microsoft.com/kb/156932/en-usFile I/O on Microsoft Windows NT, Windows 2000, and Windows XP can be synchronous or asynchronous. The default behavior for I/O is synchronous: an I/O function is called and returns when the I/O is complete. Asynchronous I/O, on the other hand, .........【阅读全文】

阅读(2036) | 评论(0) | 转发(0)

发布时间:2014-07-08 15:48:24

http://msdn.microsoft.com/en-us/library/ms902086.aspxThis macro is used to create a unique system I/O control code (IOCTL).CTL_CODE( DeviceType, Function, Method, Access);ParametersDeviceTypeDefines the type of device for the giv.........【阅读全文】

阅读(1415) | 评论(0) | 转发(0)

发布时间:2014-07-02 09:44:20

#include <windows.h>#include <malloc.h>#include <stdio.h>#define TOTALBYTES 8192#define BYTEINCREMENT 4096void main(){    DWORD BufferSize = TOTALBYTES;  &n.........【阅读全文】

阅读(3940) | 评论(0) | 转发(0)

发布时间:2014-06-27 15:11:42

TCHAR szPath[MAX_PATH];SHGetSpecialFolderPath(NULL,szPath,CSIDL_APPDATA,FALSE)......【阅读全文】

阅读(764) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册