diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-05-02 15:05:39 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-05-02 15:05:39 +0200 |
commit | 287b37a3d437f5ebc44770819adbb5daca2d3449 (patch) | |
tree | dbf615423ff02e604fd5466253d4284a958353b8 /portato.py | |
parent | 496036eaf6faac0f32e8d746f1d8b34f460cedb0 (diff) | |
download | portato-287b37a3d437f5ebc44770819adbb5daca2d3449.tar.gz portato-287b37a3d437f5ebc44770819adbb5daca2d3449.tar.bz2 portato-287b37a3d437f5ebc44770819adbb5daca2d3449.zip |
Use only global shm
Diffstat (limited to 'portato.py')
-rwxr-xr-x | portato.py | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -73,13 +73,7 @@ def main (): else: # start us again in root modus and launch listener - try: # local version - from _shm import shm_wrapper as shm - except ImportError: - try: # version installed together with portato - from portato._shm import shm_wrapper as shm - except ImportError: # the normal shm module - import shm_wrapper as shm + import shm_wrapper as shm mem = shm.create_memory(1024, permissions=0600) sig = shm.create_semaphore(InitialValue = 0, permissions = 0600) |