pprocess

tests/create_loop.py

152:a112edd9507d
2008-08-01 Paul Boddie Added an implementation of get_number_of_cores for Solaris.
     1 #!/usr/bin/env python     2      3 from pprocess import create     4      5 limit = 100     6 channel = create()     7 if channel.pid == 0:     8     i = channel.receive()     9     while i < limit:    10         print i    11         i = channel.receive()    12     channel.send("Done")    13 else:    14     for i in range(0, limit + 1):    15         channel.send(i)    16     print channel.receive()    17     18 # vim: tabstop=4 expandtab shiftwidth=4