]> sourceware.org Git - newlib-cygwin.git/commitdiff
Cygwin: posix timers: some cleanup
authorCorinna Vinschen <corinna@vinschen.de>
Sat, 12 Jan 2019 19:23:55 +0000 (20:23 +0100)
committerCorinna Vinschen <corinna@vinschen.de>
Sat, 12 Jan 2019 20:20:37 +0000 (21:20 +0100)
- use int64_t instead of long long
- make is_timer_tracker const
- improve copyright header comment

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
winsup/cygwin/timer.cc
winsup/cygwin/timer.h

index 802aa444a2ea0fd9e717882ac69aa50306712b1d..0aeba5830482b9cc40d2c5dac0eac8f2be6f7dce 100644 (file)
@@ -1,4 +1,4 @@
-/* timer.cc
+/* timer.cc: posix timers
 
 This file is part of Cygwin.
 
@@ -87,10 +87,10 @@ timer_tracker::timer_tracker (clockid_t c, const sigevent *e)
     }
 }
 
-static inline long long
+static inline int64_t
 timespec_to_us (const timespec& ts)
 {
-  long long res = ts.tv_sec;
+  int64_t res = ts.tv_sec;
   res *= USPERSEC;
   res += (ts.tv_nsec + (NSPERSEC/USPERSEC) - 1) / (NSPERSEC/USPERSEC);
   return res;
@@ -99,11 +99,11 @@ timespec_to_us (const timespec& ts)
 DWORD
 timer_tracker::thread_func ()
 {
-  long long now;
-  long long cur_sleepto_us = sleepto_us;
+  int64_t now;
+  int64_t cur_sleepto_us = sleepto_us;
   while (1)
     {
-      long long sleep_us;
+      int64_t sleep_us;
       LONG sleep_ms;
       /* Account for delays in starting thread
        and sending the signal */
@@ -260,8 +260,8 @@ timer_tracker::gettime (itimerspec *ovalue)
   else
     {
       ovalue->it_interval = it_interval;
-      long long now = get_clock (clock_id)->usecs ();
-      long long left_us = sleepto_us - now;
+      int64_t now = get_clock (clock_id)->usecs ();
+      int64_t left_us = sleepto_us - now;
       if (left_us < 0)
        left_us = 0;
       ovalue->it_value.tv_sec = left_us / USPERSEC;
index 4a961fcb0420827c9de36cb626b7e3314eaf0689..0442c37d1fdcb816a485c4f7dbbd1b19303ee87d 100644 (file)
@@ -1,4 +1,4 @@
-/* timer.h: Define class timer_tracker, base class for timer handling
+/* timer.h: Define class timer_tracker, base class for posix timers
 
 This file is part of Cygwin.
 
@@ -20,15 +20,15 @@ class timer_tracker
   timespec it_interval;
   HANDLE hcancel;
   HANDLE syncthread;
-  long long interval_us;
-  long long sleepto_us;
+  int64_t interval_us;
+  int64_t sleepto_us;
 
   bool cancel ();
 
  public:
   timer_tracker (clockid_t, const sigevent *);
   ~timer_tracker ();
-  inline bool is_timer_tracker () { return magic == TT_MAGIC; }
+  inline bool is_timer_tracker () const { return magic == TT_MAGIC; }
 
   void gettime (itimerspec *);
   int settime (int, const itimerspec *, itimerspec *);
This page took 0.036589 seconds and 5 git commands to generate.