delphi TerminateThread 结束一个线程后内存残留

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了delphi TerminateThread 结束一个线程后内存残留相关的知识,希望对你有一定的参考价值。

TerminateThread 结束一个线程后内存残留着如何把它 线程占用的内存全部清理掉

参考技术A 如果是局部定义的会自动清除的,如果是用GetMem,New等自己申请的内存,只能用全局,不然应该就没得救了。 参考技术B 结束线程后把,线程变量赋nil。本回答被提问者采纳

delphi执行一个外部程序,当外部程序结束后,delphi程序立即响应

//需要引用 ShellAPI 单元;
procedure TForm1.Button1Click(Sender: TObject); var SEInfo: TShellExecuteInfo; ExitCode: DWORD; ExecuteFile, ParamString, StartInString: string; begin ExecuteFile := ‘c:\Windows\system32\Calc.exe‘; FillChar(SEInfo, SizeOf(SEInfo), #0); SEInfo.cbSize := SizeOf(TShellExecuteInfo); with SEInfo do begin fMask := SEE_MASK_NOCLOSEPROCESS; Wnd := Application.Handle; lpFile := PChar(ExecuteFile); //ParamString can contain the application parameters // lpParameters := PChar(ParamString); //StartInString specifies the name of the working directory.if ommited, the current directory is used. // lpDirectory := PChar(StartInString); nShow := SW_SHOWNORMAL; end; if ShellExecuteEx(@SEInfo) then begin repeat Application.ProcessMessages; GetExitCodeProcess(SEInfo.hProcess, ExitCode); if ExitCode = STILL_ACTIVE then Sleep(500); until (ExitCode <> STILL_ACTIVE) or Application.Terminated; ShowMessage(‘Calculator terminated‘); end else ShowMessage(‘Error starting Calc!‘); end;

以上是关于delphi TerminateThread 结束一个线程后内存残留的主要内容,如果未能解决你的问题,请参考以下文章

线程天敌TerminateThread与SuspendThread

如何安全地调用 TerminateThread 和 FreeLibrary (WinAPI, C++)

在 C++ 代码中调用 TerminateThread 后在 C# 代码中检测到 FatalExecutionEngineError

TerminateThread 可以终止另一个进程的线程吗?

MFC中如何建立和结束一个线程

获取/检查进程 win32 的内部 kernel32 状态(为了安全使用 TerminateThread )