I'm pretty sure one would do this using the os.plock(op) function, but I have no idea how. Also, if there's a better way, I'd be grateful to find out. Code snippets are very welcome. Thanks!
|
feedback
|
|
Subprocess replaces os.popen, os.system, os.spawn, popen2 and commands. A simple example for piping would be:
You could also use a memory mapped file with the flag=MAP_SHARED for shared memory between processes. multiprocessing abstracts both pipes and shared memory and provides a higher level interface. Taken from the Processing documentation:
| ||||
|
feedback
|
|
Take a look at the multiprocessing module new in python 2.6 (also available for earlier versions a pyprocessing Here's an example from the docs illustrating passing information using a pipe for instance:
| |||
feedback
|
|
This is pretty much Python-independent! It's a classic example of Unix interprocess communication. One good option is to use Take a look at the | ||||
|
feedback
|
|
You have two options: | |||
|
feedback
|