Форум: "KOL";
Текущий архив: 2005.12.25;
Скачать: [xml.tar.bz2];
ВнизPThread leak Найти похожие ветки
← →
SuphEr (2005-05-06 22:59) [0]Здрасте!
Моя проблема такова...
Допустим процедура на кнопке:procedure TForm1.Button1Click(Sender: PObj);
var thMethod: PThread;
begin
thMethod:=NewThread;
thMethod.Free;
end;
Если нажимать на кнопку быстро много раз, то появляются лики в памяти... Как от этого избавиться?
← →
Thaddy (2005-05-07 00:13) [1]This code is not good:
You should either terminate the thread before calling free, or use NewthreadAutofree createion function.
What happens here is you create a thread (suspended!) and do not even start it. You need to start it at least once for proper release with free.
← →
SuphEr (2005-05-09 01:27) [2]Very big thanks! All work! =)
Страницы: 1 вся ветка
Форум: "KOL";
Текущий архив: 2005.12.25;
Скачать: [xml.tar.bz2];
Память: 0.44 MB
Время: 0.015 c