TThread.resume is deprecated in Delphi-2010 what should be used in place?
Posted
by Charles Faiga
on Stack Overflow
See other posts from Stack Overflow
or by Charles Faiga
Published on 2009-09-13T17:39:02Z
Indexed on
2010/03/09
3:21 UTC
Read the original article
Hit count: 389
delphi
|delphi-2010
In my multithread application
I use TThread.suspend and TThread.resume
Since moving my application to Delphi 2010 I get the following warring message
[DCC Warning] xxx.pas(277): W1000 Symbol ‘Resume’ is deprecated
If Resume is deprecated what should be used in place?
EDIT 1:
I use the Resume command to start the thread - as it is Created with 'CreateSuspended' set to True and Suspend before I terminate the thread.
EDIT 2:
© Stack Overflow or respective owner