git-svn-id: svn://db.shs.com.ru/pip@6 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5

This commit is contained in:
2015-02-28 18:37:44 +00:00
parent 02fdf8b415
commit 0891d1ba2d
319 changed files with 10557 additions and 0 deletions

9
doc/examples/pimutex.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include "pip.h"
void _() {
//! [main]
mutex.lock();
// ... your code here
mutex.unlock();
//! [main]
}