mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +00:00
Remove deps in prep for submodule
This commit is contained in:
parent
76889e9ad8
commit
5d25bdcc9f
2217 changed files with 0 additions and 591372 deletions
|
|
@ -1,59 +0,0 @@
|
|||
// $Id: Sample_History.cpp 96985 2013-04-11 15:50:32Z huangh $
|
||||
|
||||
#include "ace/Sample_History.h"
|
||||
|
||||
#if !defined (__ACE_INLINE__)
|
||||
#include "ace/Sample_History.inl"
|
||||
#endif /* __ACE_INLINE__ */
|
||||
|
||||
#include "ace/Basic_Stats.h"
|
||||
#include "ace/Log_Category.h"
|
||||
#include "ace/OS_Memory.h"
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
ACE_Sample_History::ACE_Sample_History (size_t max_samples)
|
||||
: max_samples_ (max_samples)
|
||||
, sample_count_ (0)
|
||||
{
|
||||
ACE_NEW(this->samples_, ACE_UINT64[this->max_samples_]);
|
||||
}
|
||||
|
||||
ACE_Sample_History::~ACE_Sample_History (void)
|
||||
{
|
||||
delete[] this->samples_;
|
||||
}
|
||||
|
||||
void
|
||||
ACE_Sample_History::dump_samples (
|
||||
const ACE_TCHAR *msg,
|
||||
ACE_Sample_History::scale_factor_type scale_factor) const
|
||||
{
|
||||
#ifndef ACE_NLOGGING
|
||||
for (size_t i = 0; i != this->sample_count_; ++i)
|
||||
{
|
||||
ACE_UINT64 const val = this->samples_[i] / scale_factor;
|
||||
ACELIB_DEBUG ((LM_DEBUG,
|
||||
ACE_TEXT ("%s: ")
|
||||
ACE_SIZE_T_FORMAT_SPECIFIER
|
||||
ACE_TEXT ("\t%Q\n"),
|
||||
msg,
|
||||
i,
|
||||
val));
|
||||
}
|
||||
#else
|
||||
ACE_UNUSED_ARG (msg);
|
||||
ACE_UNUSED_ARG (scale_factor);
|
||||
#endif /* ACE_NLOGGING */
|
||||
}
|
||||
|
||||
void
|
||||
ACE_Sample_History::collect_basic_stats (ACE_Basic_Stats &stats) const
|
||||
{
|
||||
for (size_t i = 0; i != this->sample_count_; ++i)
|
||||
{
|
||||
stats.sample (this->samples_[i]);
|
||||
}
|
||||
}
|
||||
|
||||
ACE_END_VERSIONED_NAMESPACE_DECL
|
||||
Loading…
Add table
Add a link
Reference in a new issue