mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-16 00:01:34 +00:00
13 lines
250 B
C
13 lines
250 B
C
#ifndef LATCH_H
|
|
#define LATCH_H
|
|
|
|
#define TICKS_PER_SEC 18
|
|
|
|
/* For different calibrators of the TSC move the declaration of
|
|
* sleep_latch and the definitions of it's length here...
|
|
*/
|
|
|
|
extern unsigned long currticks ( void );
|
|
|
|
#endif /* LATCH_H */
|