473,569 Members | 2,683 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Re: Question on threads

Jonathan Shao wrote:
On Fri, Apr 11, 2008 at 3:29 PM, Steve Holden <st***@holdenwe b.com
<mailto:st***@h oldenweb.com>wr ote:

Jonathan Shao wrote:

Hi all,
I'm a beginner to Python, so please bear with me.
Is there a way of guarenteeing that all created threads in a
program are finished before the main program exits? I know that
using join() can guarentee this, but from the test scripts I've
run, it seems like join() also forces each individual thread to
terminate first before the next thread can finish. So if I
create like 20 threads in a for loop, and I join() each created
thread, then join() will in effect cause the threads to be
executed in serial rather than in parallel.
No it won't, as in fact there is no mechanism to force a thread to
terminate in Python. When you join() each created thread the main
thread will wait for each thread to finish. Supposing the
longest-lived thread finished first then all others will immediately
return from join().

The only requirement it is imposing is that all sub-threads must be
finished before the main thread terminates.

regards
Steve
--
Steve Holden +1 571 484 6266 +1 800 494 3119
Holden Web LLC http://www.holdenweb.com/

I guess I'm doing something wrong with join(). Here's a test script I
wrote up...

import threading
import time
class TestThread(thre ading.Thread):
def __init__(self, region):
self.region = region
threading.Threa d.__init__(self )
def run(self):
for loop in range(10):
print "Region " + str(self.region ) + " reporting: " + str(loop)
time.sleep(2)
for x in range(10):
thr = TestThread(x)
thr.start()
thr.join()
raw_input()
In this script thread 0 will finish first... Am I doing something wrong
with join()?
Yes - you are calling it before you have started ALL your threads,
thereby making hte main thread wait for the end of thread 1 before
starting the next. An impressive demonstration of thread
synchronization , but not quite what you want :-)

Try saving the threads in a list then joining them later, like this
(untested):

threads = []
for x in range(10):
thr = TestThread(x)
thr.start()
threads.append( thr)
# Now all are started, wait for all to finish
for thr in threads:
thr.join()

regards
Steve
--
Steve Holden +1 571 484 6266 +1 800 494 3119
Holden Web LLC http://www.holdenweb.com/
Jun 27 '08 #1
2 1266
On 2008-04-11, Steve Holden <st***@holdenwe b.comwrote:
Yes - you are calling it before you have started ALL your
threads, thereby making hte main thread wait for the end of
thread 1 before starting the next. An impressive demonstration
of thread synchronization ,
Well, that's one way to get rid of the need for the GIL...

--
Grant Edwards grante Yow! Where's th' DAFFY
at DUCK EXHIBIT??
visi.com
Jun 27 '08 #2
Steve Holden wrote:
Jonathan Shao wrote:
>On Fri, Apr 11, 2008 at 3:29 PM, Steve Holden <st***@holdenwe b.com
<mailto:st***@ holdenweb.com>w rote:

Jonathan Shao wrote:

Hi all,
I'm a beginner to Python, so please bear with me.
Is there a way of guarenteeing that all created threads in a
program are finished before the main program exits?
I guess I'm doing something wrong with join().
Didn't we answer this question just a few days ago?

John Nagle
Jun 27 '08 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
5382
by: Ronan Viernes | last post by:
Hi, I have created a python script (see below) to count the maximum number of threads per process (by starting new threads continuously until it breaks). ###### #testThread.py import thread, sys
0
1999
by: Al Tobey | last post by:
I was building perl 5.8.2 on RedHat Enterprise Linux 3.0 (AS) today and noticed that it included in it's ccflags "-DTHREADS_HAVE_PIDS." I am building with -Dusethreads. With newer Linux distributions using the Native Posix Threading Layer (NPTL), this isn't entirely true anymore and is AFAIK unsupported (using a pid to signal/identify...
6
3183
by: m | last post by:
Hello, I have an application that processes thousands of files each day. The filenames and various related file information is retrieved, related filenames are associate and placed in a linked list within a single object, which is then placed on a stack(This cuts down thread creation and deletions roughly by a factor of 4). I create up to...
34
10753
by: Kovan Akrei | last post by:
Hi, I would like to know how to reuse an object of a thread (if it is possible) in Csharp? I have the following program: using System; using System.Threading; using System.Collections; public class A {
3
22161
by: bygandhi | last post by:
Hi - I am writing a service which will check a process and its threads for their state ( alive or dead ). The process has 5 .net managed threads created using thread.start and each have been assigned a name. As in .net there is no way we can get the managed threads, I am thinking of making a win32 call and check their status.
10
1662
by: [Yosi] | last post by:
I would like to know how threads behavior in .NET . When an application create 4 threads for example start all of them, the OS task manager will execute all 4 thread in deterministic order manes, OS execute (All have same priority) Thread#1 may be other threads, Thread#2 may be other threads, Thread#3 may be other threads,
6
2506
by: RahimAsif | last post by:
Hi guys, I would like some advice on thread programming using C#. I am writing an application that communicates with a panel over ethernet, collects data and writes it to a file. The way the data is collected is that we have different schedules (so one set of data is collected say every second, another set of data might be collected every...
3
5957
by: mjheitland | last post by:
Hi, I like to know how many threads are used by a Threading.Timer object. When I create a Threading.Timer object calling a short running method every 5 seconds I expected to have one additional ThreadPool thread. And that is exactly what MS VIsual Studio shows. But when I run Processexplorer or Taskmanager I see 2 additional threads,...
10
1744
by: Darian | last post by:
Is there a way to find all the thread names that are running in a project? For example, if I have 5 threads T1, T2, T3, T4, T5...and T2, T4, and T5 are running...I want to be able to know that T2, T4 and T5 are already running. Thanks, Darian
4
2248
by: tdahsu | last post by:
All, I'd appreciate any help. I've got a list of files in a directory, and I'd like to iterate through that list and process each one. Rather than do that serially, I was thinking I should start five threads and process five files at a time. Is this a good idea? I picked the number five at random... I was thinking that I might check...
0
7698
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7612
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7924
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8122
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
7970
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6284
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
0
5219
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
1
2113
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
0
937
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.