From d7284139c66a8348c382ae661e89defc503740f4 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sun, 15 Sep 2013 14:40:46 +0000 Subject: [PATCH] Oops! Remove a tight-looping diagnostic. I temporarily applied it as a means of testing the revised event loops in r10040, and accidentally folded it into my final commit instead of backing it out. Ahem. git-svn-id: http://svn.tartarus.org/sgt/putty@10042 cda61777-01e9-0310-a592-d414129be87e --- callback.c | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/callback.c b/callback.c index c850f6bc..c70dc53f 100644 --- a/callback.c +++ b/callback.c @@ -26,28 +26,10 @@ void request_callback_notifications(toplevel_callback_notify_fn_t fn, frontend = fr; } -void stoat_callback(void *ctx) -{ - static int stoat = 0; - if (++stoat % 1000 == 0) - debug(("stoat %d\n", stoat)); - queue_toplevel_callback(stoat_callback, NULL); -} -void queue_stoat(void) -{ - static int stoat = 0; - if (!stoat) { - stoat = 1; - queue_toplevel_callback(stoat_callback, NULL); - } -} - void queue_toplevel_callback(toplevel_callback_fn_t fn, void *ctx) { struct callback *cb; - queue_stoat(); - cb = snew(struct callback); cb->fn = fn; cb->ctx = ctx; @@ -68,7 +50,6 @@ void queue_toplevel_callback(toplevel_callback_fn_t fn, void *ctx) void run_toplevel_callbacks(void) { - queue_stoat(); if (cbhead) { struct callback *cb = cbhead; /* @@ -89,6 +70,5 @@ void run_toplevel_callbacks(void) int toplevel_callback_pending(void) { - queue_stoat(); return cbhead != NULL; } -- 2.45.2