Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

python threading blocks

I am trying to write a program which creates new threads in a loop, and doesn't wait for them to finish. As i understand it if i use .start() on the thread, my main loop should just continue, and the other thread will go off and do its work at the same time

However once my new thread starts, the loop blocks until the thread completes. Have I misunderstood how threading works in python, or is there something stupid I'm doing.

here is my code for creating new threads.

def MainLoop():
    print 'started'
    while 1:
        if not workQ.empty():
            newThread = threading.Thread(target=DoWorkItem(), args=())
            newThread.daemon = True
            newThread.start()
        else:
            print 'queue empty'

thanks all

like image 853
B_o_b Avatar asked Apr 11 '13 10:04

B_o_b


1 Answers

This calls the function and passes its result as target:

threading.Thread(target=DoWorkItem(), args=())

Lose the parentheses to pass the function object itself:

threading.Thread(target=DoWorkItem, args=())
like image 76
Janne Karila Avatar answered Oct 16 '22 09:10

Janne Karila