Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/thlorenz/threads
- Owner: thlorenz
- Created: 2015-01-14T03:02:29.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-17T03:55:34.000Z (almost 10 years ago)
- Last Synced: 2024-10-23T06:14:22.071Z (2 months ago)
- Language: C
- Homepage: https://github.com/thlorenz/threads
- Size: 258 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)