Browse Source

Added correct namespaces

master
Artyom Beilis 16 years ago
parent
commit
603f1e9f40
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      posix_mutex.h

+ 4
- 0
posix_mutex.h View File

@@ -3,6 +3,8 @@

#include <pthread.h>

namespace cppcms {

class mutex_lock {
pthread_mutex_t &m;
public:
@@ -24,4 +26,6 @@ public:
~rwlock_wrlock() { pthread_rwlock_unlock(&m); };
};

}

#endif

Loading…
Cancel
Save