moved a bunch of garbage (things that have nothing to do in root) to _trash
This commit is contained in:
parent
d094982b2c
commit
3226ed29ec
2610 changed files with 0 additions and 0 deletions
|
@ -0,0 +1,37 @@
|
|||
Metadata-Version: 2.1
|
||||
Name: sysv-ipc
|
||||
Version: 1.1.0
|
||||
Summary: System V IPC primitives (semaphores, shared memory and message queues) for Python
|
||||
Home-page: http://semanchuk.com/philip/sysv_ipc/
|
||||
Download-URL: http://semanchuk.com/philip/sysv_ipc/sysv_ipc-1.1.0.tar.gz
|
||||
Author: Philip Semanchuk
|
||||
Author-email: philip@semanchuk.com
|
||||
Maintainer: Philip Semanchuk
|
||||
License: http://creativecommons.org/licenses/BSD/
|
||||
Keywords: sysv ipc inter-process communication semaphore shared memory shm message queue
|
||||
Classifier: Development Status :: 5 - Production/Stable
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: License :: OSI Approved :: BSD License
|
||||
Classifier: Operating System :: MacOS :: MacOS X
|
||||
Classifier: Operating System :: POSIX :: BSD :: FreeBSD
|
||||
Classifier: Operating System :: POSIX :: Linux
|
||||
Classifier: Operating System :: POSIX :: SunOS/Solaris
|
||||
Classifier: Operating System :: POSIX
|
||||
Classifier: Operating System :: Unix
|
||||
Classifier: Programming Language :: Python
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Topic :: Utilities
|
||||
License-File: LICENSE
|
||||
|
||||
Sysv_ipc gives Python programs access to System V semaphores, shared memory
|
||||
and message queues. Most (all?) Unixes (including OS X) support System V IPC.
|
||||
Windows+Cygwin 1.7 might also work.
|
||||
|
||||
Sample code is included.
|
||||
|
||||
sysv_ipc is free software (free as in speech and free as in beer) released
|
||||
under a 3-clause BSD license. Complete licensing information is available in
|
||||
the LICENSE file.
|
||||
|
||||
You might also be interested in the similar POSIX IPC module at:
|
||||
http://semanchuk.com/philip/posix_ipc/
|
|
@ -0,0 +1,62 @@
|
|||
INSTALL
|
||||
LICENSE
|
||||
MANIFEST.in
|
||||
README
|
||||
ReadMe.html
|
||||
VERSION
|
||||
common.c
|
||||
common.h
|
||||
history.html
|
||||
memory.c
|
||||
memory.h
|
||||
mq.c
|
||||
mq.h
|
||||
prober.py
|
||||
semaphore.c
|
||||
semaphore.h
|
||||
setup.cfg
|
||||
setup.py
|
||||
sysv_ipc_module.c
|
||||
demos/buffer_protocol/ReadMe.md
|
||||
demos/buffer_protocol/demo.py
|
||||
demos/message_queues/ReadMe.txt
|
||||
demos/message_queues/SampleIpcConversation.png
|
||||
demos/message_queues/cleanup.py
|
||||
demos/message_queues/conclusion.py
|
||||
demos/message_queues/params.txt
|
||||
demos/message_queues/premise.py
|
||||
demos/message_queues/utils.py
|
||||
demos/sem_and_shm/ReadMe.txt
|
||||
demos/sem_and_shm/SampleIpcConversation.png
|
||||
demos/sem_and_shm/cleanup.py
|
||||
demos/sem_and_shm/conclusion.c
|
||||
demos/sem_and_shm/conclusion.py
|
||||
demos/sem_and_shm/make_all.sh
|
||||
demos/sem_and_shm/md5.c
|
||||
demos/sem_and_shm/md5.h
|
||||
demos/sem_and_shm/params.txt
|
||||
demos/sem_and_shm/premise.c
|
||||
demos/sem_and_shm/premise.py
|
||||
demos/sem_and_shm/utils.c
|
||||
demos/sem_and_shm/utils.h
|
||||
demos/sem_and_shm/utils.py
|
||||
demos/semaphore_context_manager/ReadMe.txt
|
||||
demos/semaphore_context_manager/child.py
|
||||
demos/semaphore_context_manager/parent.py
|
||||
extras/explore_max_semaphore_value.py
|
||||
extras/ftok_experiment.py
|
||||
extras/memory_leak_tests.py
|
||||
extras/memory_limit_test.py
|
||||
prober/probe_page_size.c
|
||||
prober/semtimedop_test.c
|
||||
prober/sniff_union_semun_defined.c
|
||||
sysv_ipc.egg-info/PKG-INFO
|
||||
sysv_ipc.egg-info/SOURCES.txt
|
||||
sysv_ipc.egg-info/dependency_links.txt
|
||||
sysv_ipc.egg-info/top_level.txt
|
||||
tests/__init__.py
|
||||
tests/base.py
|
||||
tests/test_memory.py
|
||||
tests/test_message_queues.py
|
||||
tests/test_module.py
|
||||
tests/test_semaphores.py
|
|
@ -0,0 +1 @@
|
|||
|
|
@ -0,0 +1,5 @@
|
|||
../sysv_ipc.cpython-311-aarch64-linux-gnu.so
|
||||
PKG-INFO
|
||||
SOURCES.txt
|
||||
dependency_links.txt
|
||||
top_level.txt
|
|
@ -0,0 +1 @@
|
|||
sysv_ipc
|
Loading…
Add table
Add a link
Reference in a new issue