无法映射共享内存

时间:2016-10-10 16:43:02

标签: c++ windows winapi shared-memory

我想在两个进程之间创建一个共享内存。因此,我只是从microsoft页面复制了剪切:

摘录1:

#define BUF_SIZE 256
TCHAR szName[] = TEXT("Global\\MyFileMappingObject");
TCHAR szMsg[] = TEXT("Message from first process.");

void initSharedMem() {
HANDLE hMapFile;
LPCTSTR pBuf;

hMapFile = CreateFileMapping(
    INVALID_HANDLE_VALUE,    // use paging file
    NULL,                    // default security
    PAGE_READWRITE,          // read/write access
    0,                       // maximum object size (high-order DWORD)
    BUF_SIZE,                // maximum object size (low-order DWORD)
    szName);                 // name of mapping object

if (hMapFile == NULL) {
    MessageBox(0, "Could not create file mapping object", "Error", 0);
    return;
}
pBuf = (LPTSTR)MapViewOfFile(hMapFile,   // handle to map object
    FILE_MAP_ALL_ACCESS, // read/write permission
    0,
    0,
    BUF_SIZE);

if (pBuf == NULL) {
    MessageBox(0, "Could not map view of file", "Error", 0);
    CloseHandle(hMapFile);

    return;
}


CopyMemory((PVOID)pBuf, szMsg, (_tcslen(szMsg) * sizeof(TCHAR)));
_getch();

UnmapViewOfFile(pBuf);

CloseHandle(hMapFile);

MessageBox(0, "Done init shared mem", "Done", 0);
return;
}

Snippet 2(其他流程):

#define BUF_SIZE 256
TCHAR szName[] = TEXT("Global\\MyFileMappingObject");
TCHAR szMsg[] = TEXT("Message from first process.");

void readSharedMem() {
HANDLE hMapFile;
LPCTSTR pBuf;

hMapFile = OpenFileMapping(
    FILE_MAP_ALL_ACCESS,   // read/write access
    FALSE,                 // do not inherit the name
    szName);               // name of mapping object

if (hMapFile == NULL) {
    MessageBox(0, L"Error", L"Could not open file mapping object", 0);
    return;
}

pBuf = (LPTSTR)MapViewOfFile(hMapFile, // handle to map object
    FILE_MAP_ALL_ACCESS,  // read/write permission
    0,
    0,
    BUF_SIZE);

if (pBuf == NULL) {
    MessageBox(0, L"Error", L"Could not map file", 0);

    CloseHandle(hMapFile);

    return;
}

MessageBox(NULL, pBuf, TEXT("Process2"), MB_OK);

UnmapViewOfFile(pBuf);

CloseHandle(hMapFile);

return;

MessageBox(0, L"Done", L"SharedMemoryDone", 0);
}

我在进程A中调用第一个函数,并获取完成的消息。但是当我之后调用readSharedMem函数时,我收到错误消息“无法打开文件映射对象”。

我在这里做错了什么?

1 个答案:

答案 0 :(得分:2)

  

我在进程A中调用第一个函数,并获取完成的消息。

当完成消息出现时,文件映射对象已经关闭,因此不再存在。

  

但是当我之后调用readSharedMem函数时,我收到错误消息“无法打开文件映射对象”。

你离开太晚了!您需要在文件映射对象仍然存在时打开它。这可能是第一个代码段中对_getch的调用所针对的内容;你应该在那一点上运行另一个程序,然后再按一个键继续。