Tagged Questions
The tthread tag has no wiki summary.
10
votes
5answers
291 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 ...
5
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
170 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
325 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
914 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
408 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
559 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
967 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
2answers
100 views
TThread Access Violating on Terminate/Free
I am running a short bit of code that will occasionally (very rarely) Access Violate on the Terminate/Free of my TThread. I am running many instances of these threads but this spot seems to be the ...
1
vote
3answers
586 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 ...
1
vote
6answers
2k views
How do I port code for Borland C++ builder to Linux?
I have source code for a Windows DLL that is written in C++ and uses Visual Component Library. Now my task is to port that to Linux, but I don't have source code for the VCL itself, or any kind of ...
0
votes
2answers
175 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
107 views
How to pass or make public variables or fields accessible to Tthread?
I am writing and building my software for Mono using Delphi Prism. So, I decided that my serial communication will be handled by a thread. Since global variables strictly are not allowed unless you ...
0
votes
2answers
472 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
...
0
votes
1answer
611 views
C++ Builder - Spawn TThreads On the Fly
I'm looking for the ability to spawn a thread or function so that it returns immediately to the calling line and continue on with the program but continues with the thread work.
For instance, if you ...
-4
votes
2answers
212 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 ...