diff options
author | Timothy Pearson <[email protected]> | 2015-09-17 16:43:10 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2015-09-17 16:43:10 -0500 |
commit | 640e6672c36985234929fc94a1b8288a82427699 (patch) | |
tree | 94f67bfa64d04e05b55bb115e9cfd23d5e4c7b34 /include/inn/timer.h | |
parent | a87c27c80800fdd1d5313eb37b4c304615144cfb (diff) | |
download | smartcardauth-640e6672c36985234929fc94a1b8288a82427699.tar.gz smartcardauth-640e6672c36985234929fc94a1b8288a82427699.zip |
v2.0 Release
Use TDE builtins for almost all functions
This package now only provides the initramfs LUKS configuration and related program(s)
Diffstat (limited to 'include/inn/timer.h')
-rw-r--r-- | include/inn/timer.h | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/include/inn/timer.h b/include/inn/timer.h deleted file mode 100644 index 0cc611f..0000000 --- a/include/inn/timer.h +++ /dev/null @@ -1,38 +0,0 @@ -/* $Id: timer.h 6129 2003-01-19 00:39:49Z rra $ -** -** Timer library interface. -** -** An interface to a simple profiling library. An application can declare -** its intent to use n timers by calling TMRinit(n), and then start and -** stop numbered timers with TMRstart and TMRstop. TMRsummary logs the -** results to syslog given labels for each numbered timer. -*/ - -#ifndef INN_TIMER_H -#define INN_TIMER_H - -#include <inn/defines.h> - -BEGIN_DECLS - -enum { - TMR_HISHAVE, /* Looking up ID in history (yes/no). */ - TMR_HISGREP, /* Looking up ID in history (data). */ - TMR_HISWRITE, /* Writing to history. */ - TMR_HISSYNC, /* Syncing history to disk. */ - TMR_APPLICATION /* Application numbering starts here. */ -}; - -void TMRinit(unsigned int); -void TMRstart(unsigned int); -void TMRstop(unsigned int); -void TMRsummary(const char *prefix, const char *const *labels); -unsigned long TMRnow(void); -void TMRfree(void); - -/* Return the current time as a double of seconds and fractional sections. */ -double TMRnow_double(void); - -END_DECLS - -#endif /* INN_TIMER_H */ |