在
Ring Buffer’s Wikipedia entry,有
example code显示
UNIX系统的黑客,其中相邻虚拟内存到一块内存是
mapped到相同的物理内存,因此实现了一个环形缓冲区而不需要任何
memcpy等.我想知道是否有办法在
Windows这么类似的东西?
谢谢,弗雷泽
我并没有真正遵循维基百科中的示例的所有细节.考虑到这一点,您使用
CreateFileMapping和
MapViewOfFile在Windows中映射内存,但MapViewOfFile不允许您为映射指定基址.
MapViewOfFileEx可用于指定基址,因此您可以使用类似的技术.
原文链接:https://www.f2er.com/windows/364328.html我没有办法告诉这是否真的有效:
// determine valid buffer size SYSTEM_INFO info; GetSystemInfo(&info); // note that the base address must be a multiple of the allocation granularity DWORD bufferSize=info.dwAllocationGranularity; HANDLE hMapFile = CreateFileMapping( INVALID_HANDLE_VALUE,NULL,PAGE_READWRITE,bufferSize*2,L"Mapping"); BYTE *pBuf = (BYTE*)MapViewOfFile(hMapFile,FILE_MAP_ALL_ACCESS,bufferSize); MapViewOfFileEx(hMapFile,bufferSize,pBuf+bufferSize);