Cygwin: posix timers: some cleanup

- use int64_t instead of long long
- make is_timer_tracker const
- improve copyright header comment

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Corinna Vinschen
2019-01-12 20:23:55 +01:00
parent 92cbaa9f23
commit 961be8d726
2 changed files with 12 additions and 12 deletions

View 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 *);