added init to mutex class

This commit is contained in:
Jeff Hill
1996-08-13 22:58:38 +00:00
parent d3e21e87b2
commit c5bfbfccc0

View File

@@ -1,11 +1,15 @@
//
// osiMutex - OS independent mutex
// (NOOP on single threaded OS)
//
class osiMutex {
public:
//
// constructor that returns status
// (since g++ does not have exceptions)
//
int init() {return 0;}
void lock() {};
void unlock() {};
private: