我正在使用wxLua和wxWidgets 2.8.12 for Windows。在下面的代码中,我尝试异步执行一些命令并重定向其输出。
问题是,如果在子进程终止之前关闭主窗口,则不会删除子进程。在wxLua应用程序退出后,我仍然可以在Windows任务管理器中看到“tree.com”进程。
我的代码有什么问题?
require("wx")
frame = wx.wxFrame(wx.NULL, wx.wxID_ANY, "Test")
function ExecCommand(cmd)
proc = wx.wxProcess(frame)
proc:Redirect()
pid = wx.wxExecute(cmd, wx.wxEXEC_ASYNC, proc)
if pid > 0 then
print("process id is " .. tostring(pid))
streamIn = proc and proc:GetInputStream()
end
end
function ReadStream()
if streamIn and streamIn:CanRead() then
local str = streamIn:Read(4096)
end
end
frame:Connect(wx.wxEVT_IDLE, ReadStream)
frame:Connect(wx.wxEVT_END_PROCESS, function(event)
proc = nil
end)
frame:Connect(wx.wxEVT_CLOSE_WINDOW, function(event)
if proc then proc:Detach() end
event:Skip()
end)
frame:Show(true)
cmd = "tree.com C:\\Windows"
ExecCommand(cmd)
wx.wxGetApp():MainLoop()
答案 0 :(得分:1)
你没有杀死子进程,所以它继续运行,为什么不应该呢?如果您不希望发生这种情况,则需要Kill()
显式使用其PID。