Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/thlorenz/threads

Playing with pthreads and such.
https://github.com/thlorenz/threads

Last synced: 26 days ago
JSON representation

Playing with pthreads and such.

Awesome Lists containing this project

README

        

# threads

Playing with pthreads and such.

## Build

```sh
# Build with ninja
./build.sh ninja && ninja -C out/Debug

# Build with make
./build.sh make && make -C out/Debug

# Generate Xcode project
./build.sh xcode
```

## Similar Repos

#### Examples from: Programming with POSIX® Threads" book By David R. Butenhof

- [hailinzeng/Programming-POSIX-Threads](https://github.com/hailinzeng/Programming-POSIX-Threads)
- [abo321/PosixThreads](https://github.com/abo321/PosixThreads)
- [snikulov/prog-posix-threads](https://github.com/snikulov/prog_posix_threads)