Skip to content

Instantly share code, notes, and snippets.

@mmahesh
Last active August 29, 2015 14:01
Show Gist options
  • Save mmahesh/5b53e6c14a90894be367 to your computer and use it in GitHub Desktop.
Save mmahesh/5b53e6c14a90894be367 to your computer and use it in GitHub Desktop.
import multiprocessing
def worker(num):
"""thread worker function"""
print 'Worker:', num
return num
if __name__ == '__main__':
jobs = []
for i in range(5):
p = multiprocessing.Process(target=worker, args=(i,))
jobs.append(p)
p.start()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment