From 86207a85409a060b660a4c2cbf3a03ca77ebfa16 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Tue, 15 Feb 2000 22:00:50 +0000 Subject: [PATCH] added dbl include guard --- src/libCom/osi/osiEvent.h | 14 ++++++++++++++ src/libCom/osi/osiMutex.h | 12 ++++++++++++ 2 files changed, 26 insertions(+) diff --git a/src/libCom/osi/osiEvent.h b/src/libCom/osi/osiEvent.h index 2580fa7c4..3c6021437 100644 --- a/src/libCom/osi/osiEvent.h +++ b/src/libCom/osi/osiEvent.h @@ -1,4 +1,15 @@ +/* + * $Id$ + * + * + * Author: Jeff Hill + * + */ + +#ifndef osiEventh +#define osiEventh + #include "osiSem.h" #include "shareLib.h" @@ -98,3 +109,6 @@ inline void osiEvent::show (unsigned level) semBinaryShow (this->id, level); } +#endif /* osiEventh */ + + diff --git a/src/libCom/osi/osiMutex.h b/src/libCom/osi/osiMutex.h index 49378a7c8..0797f1ecb 100644 --- a/src/libCom/osi/osiMutex.h +++ b/src/libCom/osi/osiMutex.h @@ -1,4 +1,15 @@ +/* + * $Id$ + * + * + * Author: Jeff Hill + * + */ + +#ifndef osiMutexh +#define osiMutexh + #include "osiSem.h" #include "shareLib.h" @@ -98,3 +109,4 @@ inline void osiMutex::show (unsigned level) const semMutexShow (this->id, level); } +#endif /* osiMutexh */