blob: f2ca5619ba650ce239fcb38f59f4d86b74c7b9d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// $Id$
#include "Callback_i.h"
#if !defined(__ACE_INLINE__)
#include "Callback_i.inl"
#endif /* __ACE_INLINE__ */
#include "ace/OS_NS_time.h"
int
Callback_i::done (void)
{
ACE_GUARD_RETURN (TAO_SYNCH_MUTEX, ace_mon, this->mutex_, 0);
return this->remaining_samples_ == 0;
}
void
Callback_i::response (Test::TimeStamp time_stamp,
const Test::Payload &)
{
ACE_hrtime_t now = ACE_OS::gethrtime ();
ACE_GUARD (TAO_SYNCH_MUTEX, ace_mon, this->mutex_);
if (this->remaining_samples_ == 0)
return;
this->remaining_samples_--;
this->history_.sample (ACE_HRTIME_TO_U64(now) - time_stamp);
}
|