代码搜索:4GB

找到约 23 项符合「4GB」的源代码

代码结果 23
www.eeworm.com/read/391067/8423483

txt 001.txt

第一课 基本概念 -------------------------------------------------------------------------------- 我们先假设您已知道了如何使用MASM。如果您还不知道的话,请下载 win32asm.exe ,并请仔细研读其中所附带的文档资料。好,如果您已准备就绪,我们这就开始吧! 理论: WIN32 程序
www.eeworm.com/read/418205/10958987

txt 15.1.1 进程.txt

第15章 多线程 本章将介绍多线程程序的编写,井利用多线程技术创建一个图形界面的网络聊天室程序。 15.1:基本概念 15.1.1 进程 . 1.程序和进程 初学者经常混淆程序和进程的概念。程序是计算机指令的集合,官以文件的形式存储 而进程通常被定义为一个正在运行的程序的实例,是一个程序在其自身的地址空间中的一次执行活 动。我们编写的程序在编译后生成的后缀为 .exe的可 ...
www.eeworm.com/read/418205/10958822

txt 17.0 进程间通信.txt

第17章 进程间通信 当一个进程启动后,操作系统为其分配 <mark>4GB</mark>的私有地址空间。位于同一个进程中的多个线程共享同 一个地址空间,因此线程之间的通信非常简单。然而,由于每个进程所拥有的 <mark>4GB</mark>地址空间都是私 有的,一个进程不能访问另一个进程地址空间中的数据,因此进程间的通信相对就比较困难些。在 Windows平台下,系统为我们提供了多种进程间通信的机制,前面的章节中已经介绍了利用 Soc ...
www.eeworm.com/read/152843/5662999

h qla_devtbl.h

#define QLA_MODEL_NAMES 0x44 /* * Adapter model names. */ static char *qla2x00_model_name[QLA_MODEL_NAMES] = { "QLA2340", /* 0x100 */ "QLA2342", /* 0x101 */ "QLA2344", /* 0x102 */ "QCP2
www.eeworm.com/read/323119/13350002

ini my-innodb-heavy-4g.ini

#BEGIN CONFIG INFO #DESCR: 4GB RAM, InnoDB only, ACID, few connections, heavy queries #TYPE: SYSTEM #END CONFIG INFO # # This is a MySQL example config file for systems with 4GB of memory # ru
www.eeworm.com/read/298833/7932073

news

2007-12-01 the 4GB bug is finally fixed! special thanks to Gentoofans 0.2p released 2007-11-22 fix a bug in CStorage::getPieceLength(), it cause files large than 4GB can n
www.eeworm.com/read/486343/6539833

changelog

2005-01-?? and 2005-02-?? ??:?? Ultr@VNC team * Made the viewer compilable with Java SDK 1.3 * Added support for huge files transfers (> 4Gb) * Added more color modes (64
www.eeworm.com/read/229812/4752091

gml guide.gml

.chap Using the flat memory model .np .ix 'flat model' Flat model is a non-segmented memory model that allows accessing data and executing code anywhere within the 4GB linear address region via a
www.eeworm.com/read/311357/13631870

txt cfile大文件.txt

随着Windows 2000和XP的普及,现在的大文件越来越多,而VC6中MFC的CFile类只支持不大于<mark>4GB</mark>的文件, 原因在于CFile类中使用了32位整型来处理文件,32位数的范围是2的32次方(<mark>4GB</mark>),超过这个范围的文件CFile就管不了,微软.Net中VC7的CFile类支持大于<mark>4GB</mark>的文件,而.Net还不普及,开发桌面应用VC6还是首选,所以我们可以参照VC7写一个CFile的继承类 ...