mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 09:58:01 +00:00
d13547d504
While I'm in the mood for cleaning up the top-level directory here: all the 'nostuff.c' files have moved into a new 'stubs' directory, and I broke up be_misc.c into smaller modules that can live in 'utils'.
22 lines
592 B
C
22 lines
592 B
C
/*
|
|
* notiming.c: stub version of timing API.
|
|
*
|
|
* Used in any tool which needs a subsystem linked against the
|
|
* timing API but doesn't want to actually provide timing. For
|
|
* example, key generation tools need the random number generator,
|
|
* but they don't want the hassle of calling noise_regular() at
|
|
* regular intervals - and they don't _need_ it either, since they
|
|
* have their own rigorous and different means of noise collection.
|
|
*/
|
|
|
|
#include "putty.h"
|
|
|
|
unsigned long schedule_timer(int ticks, timer_fn_t fn, void *ctx)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void expire_timer_context(void *ctx)
|
|
{
|
|
}
|