git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Fix build on OSX.
[stg.git]
/
include
/
stg
/
locker.h
diff --git
a/include/stg/locker.h
b/include/stg/locker.h
index fe1014d779093b94e277f0248f1fa997a12db621..16b0323f3876c78941fe41c2b7faa310741eb5bb 100644
(file)
--- a/
include/stg/locker.h
+++ b/
include/stg/locker.h
@@
-34,7
+34,12
@@
class STG_LOCKER
{
public:
- STG_LOCKER(pthread_mutex_t * m)
+ explicit STG_LOCKER(pthread_mutex_t& m)
+ : mutex(&m)
+ {
+ pthread_mutex_lock(mutex);
+ }
+ explicit STG_LOCKER(pthread_mutex_t * m)
: mutex(m)
{
pthread_mutex_lock(mutex);