vote up 0 vote down star

I'm hosting Python script with Python for Delphi components inside my Delphi application. I'd like to create background tasks which keep running by script.

Is it possible to create threads which keep running even if the script execution ends (but not the host process, which keeps going on). I've noticed that the program gets stuck if the executing script ends and there is thread running. However if I'll wait until the thread is finished everything goes fine.

I'm trying to use "threading" standard module for threads.

flag

3 Answers

vote up 1 vote down

Python has its own threading module that comes standard, if it helps. You can create thread objects using the threading module.

threading Documentation

thread Documentation

The thread module offers low level threading and synchronization using simple Lock objects.

Again, not sure if this helps since you're using Python under a Delphi environment.

link|flag
Yes, I'm using those modules. – Harriv Sep 16 '08 at 10:46
vote up 0 vote down

If a process dies all it's threads die with it, so a solution might be a separate process.

See if creating a xmlrpc server might help you, that is a simple solution for interprocess communication.

link|flag
vote up 0 vote down

Threads by definition are part of the same process. If you want them to keep running, they need to be forked off into a new process; see os.fork() and friends.

You'll probably want the new process to end (via exit() or the like) immediately after spawning the script.

link|flag
The execution of script in host applications ends, but the process keeps going on. – Harriv Sep 15 '08 at 17:10
I think I need everything to work inside same process, but thank you for suggestion. – Harriv Sep 16 '08 at 16:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.