Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 1 addition & 26 deletions primer/18/sleep.py
Original file line number Diff line number Diff line change
@@ -1,26 +1 @@
from time import sleep,ctime
import thread

loops =[4,2,11]
def loop(nloop,nsec,lock):
print " start loop:",nloop,"at",ctime()
sleep(nsec)
print "loop :",nloop, "done at:",ctime()

def main():
print "start at:", ctime()
locks = []
nloops = range(len(loops))

for i in nloops:
lock = thread.allocate_lock()
lock.acquire()
locks.append(lock)
for i in nloops:
thread.start_new_thread(loop,(i,loops[i],locks[i]))
for i in nloops:
while locks[i].locked():pass

print " all done at:" ,ctime()
if __name__ == "__main__":
main()
cout<<"hola mundo"<<endl;