19,519
社区成员




// Amount of memory to use for HCD buffer
#define gcTotalAvailablePhysicalMemory (0x20000) // 128K
#define gcHighPriorityPhysicalMemory (gcTotalAvailablePhysicalMemory/4) // 1/4 as high priority
原来就是这个了。
// Amount of memory to use for HCD buffer
static const DWORD gcTotalAvailablePhysicalMemory = 64*1024; // 64K
static const DWORD gcHighPriorityPhysicalMemory = 16*1024; // 16K
这个大小是默认的,要改大一点。