gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 15:38:16 29 4
gpt4 key购买 nike

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

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 中循环 while ,那就没问题了。并将数据写入文件。但是如果我在之后使用这个 func init()

HANDLE hThread = (HANDLE)_beginthread(main_pipe_client, 0, NULL);

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

最佳答案

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

创建一个event说“MyPipeCreateEvent”,该事件将在成功执行 CreateFile() 后由 main_pipe_client() 设置。在“MyPipeCreateEvent”上的 init()WaitForSingleobject() 中,仅在设置事件时才继续执行 WriteFile。

关于CreateFile/readfile & writefile 多线程 - 无效句柄,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21849619/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com