summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2002-04-30 19:44:20 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2002-04-30 19:44:20 +0000
commit8fe7bae3a7894f9691feca5485d5403b297a4e51 (patch)
tree61ed88f59f098416e659548172c793c89a4c9206
parent02d67a7694ce3f3a9d050824b81dff7f78e66cc7 (diff)
downloadATCD-8fe7bae3a7894f9691feca5485d5403b297a4e51.tar.gz
ChangeLogTag: Tue Apr 30 14:42:06 2002 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ace/Synch.h2
-rw-r--r--ace/Synch.i2
2 files changed, 2 insertions, 2 deletions
diff --git a/ace/Synch.h b/ace/Synch.h
index 14af19fa886..0d4ef01c24e 100644
--- a/ace/Synch.h
+++ b/ace/Synch.h
@@ -730,7 +730,7 @@ public:
int remove (void);
/// Returns -1 with <errno> == <ETIME>.
- int wait (ACE_Time_Value * = 0);
+ int wait (const ACE_Time_Value * = 0);
/// Returns 0.
int signal (void);
diff --git a/ace/Synch.i b/ace/Synch.i
index c845cc97855..cd7690e8e76 100644
--- a/ace/Synch.i
+++ b/ace/Synch.i
@@ -858,7 +858,7 @@ ACE_INLINE int ACE_Null_Condition::remove (void)
}
ACE_INLINE int
-ACE_Null_Condition::wait (ACE_Time_Value *)
+ACE_Null_Condition::wait (const ACE_Time_Value *)
{
errno = ETIME;
return -1;