CreateFile / readfile& writefile多线程 - 无效句柄

时间:2014-02-18 09:40:15

标签: c windows multithreading

我不明白为什么这不起作用:

void __cdecl main_pipe_client(void * Args)
{

py_func python_func;

BOOL bRet;
DWORD size = 0;

hpipe = CreateFile(TEXT("D:/stc_5010"), GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_HIDDEN, NULL);
if (hpipe == INVALID_HANDLE_VALUE)
{
    // its OK there is no error
}
while (1)
{
    char wiadomosc[50];
    bRet = ReadFile(hpipe, wiadomosc, 50, &size, NULL);
    //READING ONLINE
    if (bRet == FALSE)
    {
        python_func.py_AppendChat(1, 1, "Read Failed : Bytes Read : %u", size);
        break;
    }
    if (size > 0){
        // There is OK
    }

    Sleep(1500);
    size = 0;
}
}

hpipe - 在程序HANDLE hpipe;

的开头声明
void init(){
    Sleep(500);
    py_func python_func;
    char buf[256];
    DWORD wpisano = 0;
    sprintf_s(buf, "INIT_CHARACTER");
    if (!WriteFile(hpipe, buf, 256, &wpisano, NULL)){
        char buf5[256];
        FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, GetLastError(),
            MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), buf5, 256, NULL);
        sprintf_s(buf5, "%s %d", buf5, GetLastError());
        MessageBoxA(NULL, (LPCSTR)buf5, (LPCSTR) "ERROR", NULL); // return error 6
    }

}

但是如果我在循环中进行,在main_pipe_client函数writefile中这很好。并且数据被写入文件。 但是如果我在

之后使用这个func init()
HANDLE hThread = (HANDLE)_beginthread(main_pipe_client, 0, NULL);

然后writefile返回无效句柄...

1 个答案:

答案 0 :(得分:1)

由于您在线程内创建管道,因此在调用WriteFile()时,hpipe HANDLE可能无效。你需要'同步'线程才能使其正常工作。

创建一个event说“MyPipeCreateEvent”,它将在成功main_pipe_client()后由CreateFile()设置。在“MyPipeCreateEvent”的init()WaitForSingleobject()中,只有在设置了事件后才进入WriteFile。