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

https://github.com/stefanofiorentino/mutex_lock

mutex and resource managing example
https://github.com/stefanofiorentino/mutex_lock

cpp11 mutex-lock resource-management

Last synced: about 1 year ago
JSON representation

mutex and resource managing example

Awesome Lists containing this project

README

          

# mutex_lock
mutex and resource managing example

#valgrind
To show the real benefits from resource-management objects one should run
```$xslt
valgrind --leak-check=full ./test/Test -r xml -d yes --order lex "Solution that leaks"
```
and
```$xslt
valgrind --leak-check=full ./test/Test -r xml -d yes --order lex "Solution that doesn't leak"
```

# submodule
If you didn't `git clone --recursive https://github.com/stefanofiorentino/mutex_lock`, then you have to
```
git submodule update --init --recursive
```