summaryrefslogtreecommitdiff
path: root/mutx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'mutx.cpp')
-rwxr-xr-x[-rw-r--r--]mutx.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/mutx.cpp b/mutx.cpp
index ff67ed2..bbd5ced 100644..100755
--- a/mutx.cpp
+++ b/mutx.cpp
@@ -9,19 +9,11 @@ using namespace std;
mutx::mutx()
{
-#ifdef VERBOSE
- cout << "mutx::mutx()" << endl;
-#endif
-
pthread_mutex_init( &mut_stdout, NULL );
}
mutx::~mutx()
{
-#ifdef VERBOSE
- cout << "mutx::~mutx()" << endl;
-#endif
-
pthread_mutex_destroy( &mut_stdout );
}