]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
common/Thread: added const to 2 functions 5134/head
authorMichal Jarzabek <stiopa@gmail.com>
Sat, 27 Jun 2015 14:18:42 +0000 (15:18 +0100)
committerMichal Jarzabek <stiopa@gmail.com>
Thu, 2 Jul 2015 20:08:17 +0000 (21:08 +0100)
Changed get_thread_id and am_self to const member functions

Signed-off-by: Michal Jarzabek <stiopa@gmail.com>
src/common/Thread.cc
src/common/Thread.h

index 3ec358acac4d8a56597e41c7c154b18e7b5e7bfe..3a85d061b17f10040e664274eb992264863a825e 100644 (file)
@@ -84,7 +84,7 @@ void *Thread::entry_wrapper()
   return entry();
 }
 
-const pthread_t &Thread::get_thread_id()
+const pthread_t &Thread::get_thread_id() const
 {
   return thread_id;
 }
@@ -94,7 +94,7 @@ bool Thread::is_started() const
   return thread_id != 0;
 }
 
-bool Thread::am_self()
+bool Thread::am_self() const
 {
   return (pthread_self() == thread_id);
 }
index edc2a0a5970ab95c457e4c0edd5404c198547392..e284bdafaaba86d5f5976438e44e1a94bcccb1b2 100644 (file)
@@ -42,10 +42,10 @@ class Thread {
   static void *_entry_func(void *arg);
 
  public:
-  const pthread_t &get_thread_id();
+  const pthread_t &get_thread_id() const;
   pid_t get_pid() const { return pid; }
   bool is_started() const;
-  bool am_self();
+  bool am_self() const;
   int kill(int signal);
   int try_create(size_t stacksize);
   void create(size_t stacksize = 0);