我决定为 IPC 使用邮槽。在 Windows 8 上一切正常。但是在 Windows Xp 上,我收到了很好的第一条消息,但是对 ReadFile 的调用被卡住了。
这是我的测试代码:
procedure TForm1.Button1Click(Sender: TObject);
var
hand : THandle;
buf : array [0..255] of AnsiChar;
btsRead : DWORD;
begin
hand := CreateMailslot('\\.\mailslot\somemailslot', 255, DWORD(-1), nil);
if hand <> INVALID_HANDLE_VALUE then
begin
while True do
begin
ReadFile(hand, buf, 255, btsRead, nil); // call gets stuck after first message
ShowMessage(buf);
Application.ProcessMessages;
end;
end;
在 Windows 8 上,我继续从客户端应用程序接收消息,但在 Windows xp 上,对 ReadFile 的调用会永远等待消息。我尝试重新打开客户端应用程序但没有成功。
我做错了什么?