summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2003-05-24 03:21:04 +0000
committerbala <balanatarajan@users.noreply.github.com>2003-05-24 03:21:04 +0000
commita65cd3aec4a6512aae6c44be1f2878dd9bfac919 (patch)
treeb9d2bd7e059ef2be0eb6d842033c795789ee6bdb
parentc57a0ef542fa1d871e33db0778bc758bb8ce3f25 (diff)
downloadATCD-a65cd3aec4a6512aae6c44be1f2878dd9bfac919.tar.gz
ChangeLogTag:Fri May 23 22:20:14 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
-rw-r--r--ChangeLog4
-rw-r--r--Kokyu/Kokyu.cpp6
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index a2ba3a48802..329e78802a1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri May 23 22:20:14 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
+
+ * Kokyu/Kokyu.cpp: Fixed fuzz errors.
+
Fri May 23 09:13:38 2003 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
* ace/OS_Dirent.cpp (opendir_emulation): Added a check to see
diff --git a/Kokyu/Kokyu.cpp b/Kokyu/Kokyu.cpp
index 55da0b326ec..274068c8a22 100644
--- a/Kokyu/Kokyu.cpp
+++ b/Kokyu/Kokyu.cpp
@@ -49,7 +49,7 @@ create_dispatcher (const ConfigInfoSet& config_info_set)
return disp;
}
-ACE_INLINE void
+void
DSRT_Dispatcher::implementation (DSRT_Dispatcher_Impl* impl)
{
dispatcher_impl_ = impl;
@@ -61,13 +61,13 @@ DSRT_Dispatcher::schedule (guid_t guid, const DSRT_QoSDescriptor& qos)
return dispatcher_impl_->schedule (guid, qos);
}
-ACE_INLINE int
+int
DSRT_Dispatcher::update_schedule (guid_t guid, const DSRT_QoSDescriptor& qos)
{
return dispatcher_impl_->update_schedule (guid, qos);
}
-ACE_INLINE int
+int
DSRT_Dispatcher::cancel_schedule (guid_t guid, const DSRT_QoSDescriptor& qos)
{
return dispatcher_impl_->cancel_schedule (guid, qos);