Sebastian Kuschel reports that pfd_closing can be called for a socket
[u/mdw/putty] / notiming.c
CommitLineData
428cc4b0 1/*
860a34f8 2 * notiming.c: stub version of timing API.
428cc4b0 3 *
860a34f8 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
428cc4b0 9 * have their own rigorous and different means of noise collection.
10 */
11
12#include "putty.h"
13
d719927e 14unsigned long schedule_timer(int ticks, timer_fn_t fn, void *ctx)
428cc4b0 15{
16 return 0;
17}
860a34f8 18
19void expire_timer_context(void *ctx)
20{
21}