Update README.md
[puttycyg-ng.git] / notiming.c
blob384fa670a8f7d02df45cc958c9613dfd9f8b033c
1 /*
2 * notiming.c: stub version of timing API.
3 *
4 * Used in any tool which needs a subsystem linked against the
5 * timing API but doesn't want to actually provide timing. For
6 * example, key generation tools need the random number generator,
7 * but they don't want the hassle of calling noise_regular() at
8 * regular intervals - and they don't _need_ it either, since they
9 * have their own rigorous and different means of noise collection.
12 #include "putty.h"
14 long schedule_timer(int ticks, timer_fn_t fn, void *ctx)
16 return 0;
19 void expire_timer_context(void *ctx)