saran
saran

Reputation: 11

PERL parallel multi threading

I am writing a PERL script involving multithreading. It has a GUI and the number of threads to be used will be taken as user input. Depending on this number, the script should generate threads which all access the same sub. I want the n threads to work in parallel. But when I create a loop, the parallel processing is lost. Any idea as to how to overcome this issue?

Upvotes: 1

Views: 536

Answers (2)

Wes Hardaker
Wes Hardaker

Reputation: 22262

You probably need to call threads->yield() function occasionally in the processing loops. The yield() function gives a "hint" to give up the CPU for a thread.

Upvotes: 0

Mathieu Legrand
Mathieu Legrand

Reputation: 162

I believe that the simplest way to answer would be to recommend you to look at something like POE. The framework cookbook webpage provides many examples that surely will be a good starting point for your original issue.

Depending on your GUI platform, you may also want to spend time on event loops provided by the framework itself.

Upvotes: 4

Related Questions