~ubuntu-branches/debian/squeeze/putty/squeeze

« back to all changes in this revision

Viewing changes to notiming.c

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2008-05-28 09:28:32 UTC
  • mfrom: (4.1.4 hardy)
  • Revision ID: james.westby@ubuntu.com-20080528092832-88epkb3d4s1zsw61
Tags: 0.60-3
* Move putty to Applications/Network/Communication menu sub-section.
* Use dh_desktop.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * notiming.c: stub version of schedule_timer().
 
2
 * notiming.c: stub version of timing API.
3
3
 * 
4
 
 * Used in key generation tools, which need the random number
5
 
 * generator but don't want the hassle of calling noise_regular()
6
 
 * at regular intervals - and don't _need_ it either, since they
 
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
7
9
 * have their own rigorous and different means of noise collection.
8
10
 */
9
11
 
13
15
{
14
16
    return 0;
15
17
}
 
18
 
 
19
void expire_timer_context(void *ctx)
 
20
{
 
21
}