diff options
Diffstat (limited to 'src/Lock.cpp')
-rw-r--r-- | src/Lock.cpp | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/src/Lock.cpp b/src/Lock.cpp index 517843d..c4262e2 100644 --- a/src/Lock.cpp +++ b/src/Lock.cpp @@ -9,11 +9,21 @@ * Douglas M. Pase - initial API and implementation * *******************************************************************************/ -#include <stdio.h> -#include <pthread.h> +// +// Configuration +// +// Implementation header #include "Lock.h" +// System includes +#include <cstdio> + + +// +// Implementation +// + Lock::Lock() { pthread_mutex_init(&(this->mutex), NULL); } |