Tagged Questions
10
votes
5answers
305 views
How to implement thread which periodically checks something using minimal resources?
I would like to have a thread running in background which will check connection to some server with given time interval. For example for every 5 seconds.
I don't know if there is a good "desing ...
10
votes
4answers
3k views
With what delphi Code should I replace my calls to deprecated TThread method Suspend?
It has been asked before, but without a full answer. This is to do with the so called famous "‘Fatal threading model!’".
I need to replace this call to TThread.Suspend with something safe, that ...
8
votes
5answers
4k views
Delphi TThread.CurrentThread and EAccessViolation - Is This a Bug or My Incompetence..?
In Delphi 2009 I'm finding that any time I use TThread.CurrentThread in an application, I'll get an error message like the following when the application closes:
Exception EAccessViolation in module ...
6
votes
2answers
3k views
A proper way of destroying a TThread object
This question may seem trivial, but I hope you won't ignore it.
Before destroying a TThread object it is usually necessary to wait until the thread that called the TThread.Execute() method finishes, ...
4
votes
2answers
241 views
Thread Error: The Handle is Invalid (6) when trying to Free a suspended thread
In a given example I am receiving an exception when calling AThread.Free.
program Project44;
{$APPTYPE CONSOLE}
uses
SysUtils, Classes, Windows;
type
TMyException = class(Exception);
var
...
3
votes
6answers
337 views
Raising Exception in TThread Execute?
I just realized that my exceptions are not being shown to the user in my threads!
At first I used this in my thread for raising the exception, which does not work:
except on E:Exception do
begin
...
3
votes
2answers
949 views
Thread Message Loop Hangs in Delphi
I have a simple Delphi program that I'm working on, in which I am attempting to use threading to separate the functionality of the program from its GUI, and to keep the GUI responsive during more ...
2
votes
4answers
451 views
Pausing execution of a Thread WITHOUT sleeping?
I am using the Skype API, which sends back a message everytime it receives one. I am not sure if this really is what is causing it, but it's the closest I can get: When I send too many messages, the ...
2
votes
5answers
608 views
Free a TThread either automatically or manually
I have a main thread and a separate thread in my program. If the separate thread finishes before the main thread, it should free itself automatically. If the main thread finishes first, it should free ...
2
votes
3answers
1k views
Problem with running WebService in separate thread in Delphi
I have never asked questions in any community as I always solved problems by myself or could find them online. But with this one I came to dead end and need Help!
To make it very clear – I converted a ...
2
votes
2answers
2k views
delphi - terminate all the threads (TThread) on closing application
My application is a tcp/ip server, with main thread created only once & listening all the time. When new client connects, the main thread creates the new thread of TClientThread type. There is ...
1
vote
3answers
620 views
Some help with TThread (Terminate, FreeOnTerminate and other adventures in the realm of threading)
I'm trying the achieve the following (using Delphi7):
After logging in to my program, the user gains control, but in the background a separate thread downloads a file from the Internet to check if the ...
0
votes
2answers
179 views
TThread Doesn't Do It's Job Unless there is a MessageBox in the Middle !
i created a class of TThread to do some socket operations, the thing is, the code doesnt work unless i add MessageBox to it, sockets wont work unless i put a MessageBox call before it
Sleep(2000); ...
0
votes
2answers
493 views
How to use TThread the right way
Could you help me please. I'm writing a component (something like TListView), In my component I perform 3 procedures one by one:
procedure findFiles(Path:String); // using FindFirst, FindNext
...
-4
votes
2answers
227 views
Delphi: TThreadList sometimes lock program
Sometimes this function locks my program, and it's freezes until i close it.
What is wrong here ?
function del_from_list(id:string):boolean;
var i : integer;
begin
Result := True;
try
with ...