added os depen stuff

This commit is contained in:
Jeff Hill
1996-11-02 01:38:00 +00:00
parent 5201df3dbc
commit 14127052f1
3 changed files with 28 additions and 0 deletions

View File

@@ -11,6 +11,9 @@ INC += shareLib.h
INC += createSoftLinks.sh
INC += bsdProto.h
INC += task_params.h
INC += osiMutexNOOP.h
OSINC += osiSock.h
include $(TOP)/config/RULES.Unix

7
src/include/Makefile.Vx Executable file
View File

@@ -0,0 +1,7 @@
TOP = ../../..
include $(TOP)/config/CONFIG_BASE
OSINC += osiSock.h
include $(TOP)/config/RULES.Vx

View File

@@ -0,0 +1,18 @@
//
// 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 osiLock() {}
void osiUnlock() {}
void show (unsigned) const {}
private:
};