From: Willy Tarreau Date: Wed, 21 Aug 2019 12:12:19 +0000 (+0200) Subject: MINOR: debug: indicate the applet name when the task is task_run_applet() X-Git-Tag: v2.1-dev2~204 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a512b02f67a30ab5519d04f8c8b1263415321c85;p=thirdparty%2Fhaproxy.git MINOR: debug: indicate the applet name when the task is task_run_applet() This allows to figure what applet is currently being executed (and likely hung). --- diff --git a/src/debug.c b/src/debug.c index f378cd97f8..3ea5ae4024 100644 --- a/src/debug.c +++ b/src/debug.c @@ -89,6 +89,7 @@ void ha_thread_dump(struct buffer *buf, int thr, int calling_tid) void ha_task_dump(struct buffer *buf, const struct task *task, const char *pfx) { const struct stream *s = NULL; + const struct appctx __maybe_unused *appctx = NULL; if (!task) { chunk_appendf(buf, "0\n"); @@ -109,7 +110,7 @@ void ha_task_dump(struct buffer *buf, const struct task *task, const char *pfx) task->call_date ? " ns ago" : ""); chunk_appendf(buf, "%s" - " fct=%p (%s) ctx=%p\n", + " fct=%p (%s) ctx=%p", pfx, task->process, task->process == process_stream ? "process_stream" : @@ -118,6 +119,11 @@ void ha_task_dump(struct buffer *buf, const struct task *task, const char *pfx) "?", task->context); + if (task->process == task_run_applet && (appctx = task->context)) + chunk_appendf(buf, "(%s)\n", appctx->applet->name); + else + chunk_appendf(buf, "\n"); + if (task->process == process_stream && task->context) s = (struct stream *)task->context; else if (task->process == task_run_applet && task->context)