https://github.com/programator2/ppds
Module with customized synchronization classes
https://github.com/programator2/ppds
Last synced: 6 months ago
JSON representation
Module with customized synchronization classes
- Host: GitHub
- URL: https://github.com/programator2/ppds
- Owner: Programator2
- Created: 2020-02-26T10:56:27.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-02T15:00:50.000Z (almost 6 years ago)
- Last Synced: 2025-06-01T20:22:45.050Z (7 months ago)
- Language: Python
- Size: 8.79 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
fei.ppds
========
Customized synchronization objects. In addition to standard FIFO
``Semaphore``, it implements a LIFO version and a version with
randomized inserts into the waiter queue.
Developed for Parallel Programming and Distributed Systems course at Faculty of
Electrical Engineering and Information Technology STU in Bratislava.
Installation guide
------------------
The package is compatible with Python 3. It was tested under Python 3.8.
Using pip
~~~~~~~~~
.. code:: bash
pip install --upgrade fei.ppds
Windows
~~~~~~~
.. code:: bash
py -3 setup.py install
Linux
~~~~~
.. code:: bash
python3 setup.py install