An open API service indexing awesome lists of open source software.

https://github.com/raasahsan/pcc

concurrency library for c
https://github.com/raasahsan/pcc

c concurrency

Last synced: 6 months ago
JSON representation

concurrency library for c

Awesome Lists containing this project

README

          

# pcc

pcc is a library for concurrent programming in C. It provides the following mechanisms:
- Threads
- Mutexes
- Semaphores
- Latches
- Barriers
- Atomics
- Spinlock
- Reentrant locks
- Queues
- Disruptor

## Running

```shell
./compile.sh
./a.out
```

## Running with docker

```
docker build -t pcc-dev .
docker run -it pcc-dev ./a.out
```