⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 notiming.c

📁 putty
💻 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"

long schedule_timer(int ticks, timer_fn_t fn, void *ctx)
{
    return 0;
}

void expire_timer_context(void *ctx)
{
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -