-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmtsleep3.py
More file actions
33 lines (29 loc) · 778 Bytes
/
mtsleep3.py
File metadata and controls
33 lines (29 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env python
from time import ctime,sleep
import threading
loops = [2,4]
class ThreadFunc():
def __init__(self,func,args,name=''):
self.name = name
self.func = func
self.args = args
def __call__(self):
apply(self.func,self.args)
def loop(nloop,nsec):
print 'start loop',nloop,'at',ctime()
sleep(nsec)
print 'loop',nloop,'done at:',ctime()
def main():
print 'starting at:',ctime()
nloops = range(len(loops))
threads = []
for i in nloops:
t = threading.Thread(target=ThreadFunc(loop,(i,loops[i])))
threads.append(t)
for i in nloops:
threads[i].start()
for i in nloops:
threads[i].join()
print 'all Done at:',ctime()
if __name__ == '__main__':
main()