From c424a25d66d69d0dafe39566ca23c8ebe1e8ba80 Mon Sep 17 00:00:00 2001 From: stefan schippers Date: Sat, 2 Dec 2023 00:58:57 +0100 Subject: [PATCH] add xctx->last_command in xshem globals debug command --- src/scheduler.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/scheduler.c b/src/scheduler.c index 7e992fc7..fe8fdccd 100644 --- a/src/scheduler.c +++ b/src/scheduler.c @@ -1682,6 +1682,7 @@ int xschem(ClientData clientdata, Tcl_Interp *interp, int argc, const char * arg my_snprintf(res, S(res), "hilight_nets=%d\n", xctx->hilight_nets); Tcl_AppendResult(interp, res, NULL); my_snprintf(res, S(res), "semaphore=%d\n", xctx->semaphore); Tcl_AppendResult(interp, res, NULL); my_snprintf(res, S(res), "ui_state=%d\n", xctx->ui_state); Tcl_AppendResult(interp, res, NULL); + my_snprintf(res, S(res), "last_command=%d\n", xctx->last_command); Tcl_AppendResult(interp, res, NULL); my_snprintf(res, S(res), "prep_net_structs=%d\n", xctx->prep_net_structs); Tcl_AppendResult(interp, res, NULL); my_snprintf(res, S(res), "prep_hi_structs=%d\n", xctx->prep_hi_structs); Tcl_AppendResult(interp, res, NULL); my_snprintf(res, S(res), "prep_hash_inst=%d\n", xctx->prep_hash_inst); Tcl_AppendResult(interp, res, NULL);