From c1969f1b4b2d9d9a86dafc4a417e42f879b5f647 Mon Sep 17 00:00:00 2001 From: David Smith Date: Mon, 17 Aug 2009 12:27:15 -0500 Subject: [PATCH] Unlocks global variables, then calls _stp_print_flush(). * translate.cxx (c_unparser::emit_probe): Unlocks global variables, then calls _stp_print_flush() (instead of the other way around). --- translate.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/translate.cxx b/translate.cxx index 69b163047..8d20e8f69 100644 --- a/translate.cxx +++ b/translate.cxx @@ -1654,13 +1654,13 @@ c_unparser::emit_probe (derived_probe* v) // NB: no need to uninitialize locals, except if arrays/stats can // someday be local - // XXX: do this flush only if the body included a - // print/printf/etc. routine! - o->newline(1) << "_stp_print_flush();"; - + o->indent(1); if (v->needs_global_locks ()) emit_unlocks (vut); + // XXX: do this flush only if the body included a + // print/printf/etc. routine! + o->newline() << "_stp_print_flush();"; o->newline(-1) << "}\n"; } -- 2.43.5