summaryrefslogtreecommitdiff
path: root/mutx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'mutx.cpp')
-rw-r--r--mutx.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/mutx.cpp b/mutx.cpp
deleted file mode 100644
index eb75e90..0000000
--- a/mutx.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-// class mutx implementation.
-
-#ifndef s_mutx_CXX
-#define s_mutx_CXX
-
-#include "mutx.h"
-
-using namespace std;
-
-mutx::mutx()
-{
- pthread_mutex_init( &mut_stdout, NULL );
-}
-
-mutx::~mutx()
-{
- pthread_mutex_destroy( &mut_stdout );
-}
-
-#endif