summaryrefslogtreecommitdiff
path: root/src/common/Timer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/Timer.cc')
-rw-r--r--src/common/Timer.cc19
1 files changed, 8 insertions, 11 deletions
diff --git a/src/common/Timer.cc b/src/common/Timer.cc
index ac0550c768f..1b560c3033e 100644
--- a/src/common/Timer.cc
+++ b/src/common/Timer.cc
@@ -12,24 +12,21 @@
*
*/
-#include "Cond.h"
-#include "Mutex.h"
-#include "Thread.h"
-#include "Timer.h"
+#include <sstream>
+#include <signal.h>
+#include <sys/time.h>
+#include <math.h>
-#include "common/config.h"
#include "include/Context.h"
+#include "common/config.h"
+#include "common/Thread.h"
+
+#include "Timer.h"
#define dout_subsys ceph_subsys_timer
#undef dout_prefix
#define dout_prefix *_dout << "timer(" << this << ")."
-#include <sstream>
-#include <signal.h>
-#include <sys/time.h>
-#include <math.h>
-
-
class SafeTimerThread : public Thread {
SafeTimer *parent;
public: