git.stg.codes
/
stg.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Implement ReconnectOnTariffChange logic
[stg.git]
/
projects
/
stargazer
/
stg_timer.h
1
/*
2
$Revision: 1.9 $
3
$Date: 2010/11/03 10:37:52 $
4
$Author: faust $
5
*/
6
7
#ifndef STG_TIMER_H
8
#define STG_TIMER_H
9
10
#include <ctime>
11
12
extern volatile const time_t stgTime;
13
int RunStgTimer();
14
void StopStgTimer();
15
void WaitTimer();
16
bool IsStgTimerRunning();
17
int stgUsleep(unsigned long t);
18
19
#endif //STG_TIMER_H
20
21