2004-11-28 03:48:31 +03:00
|
|
|
/*
|
2005-12-09 23:04:19 +03:00
|
|
|
* notiming.c: stub version of timing API.
|
2004-11-28 03:48:31 +03:00
|
|
|
*
|
2005-12-09 23:04:19 +03:00
|
|
|
* 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
|
2004-11-28 03:48:31 +03:00
|
|
|
* have their own rigorous and different means of noise collection.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "putty.h"
|
|
|
|
|
2012-09-19 01:42:48 +04:00
|
|
|
unsigned long schedule_timer(int ticks, timer_fn_t fn, void *ctx)
|
2004-11-28 03:48:31 +03:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2005-12-09 23:04:19 +03:00
|
|
|
|
|
|
|
void expire_timer_context(void *ctx)
|
|
|
|
{
|
|
|
|
}
|