Em 26-05-2013 22:39, Samuel Thibault escreveu:
Miguel Figueiredo, le Sun 26 May 2013 18:28:55 +0100, a écrit :
2013-05-26 Miguel Figueiredo <el...@debianpt.org>

* kern/thread.c (stack_alloc_hits, stack_alloc_misses): Remove unused
variables

I wouldn't do that: they can be read from the debugger.

Samuel


in case you feel it is worth it:

diff --git a/kern/thread.c b/kern/thread.c
index 79f526a..574f184 100644
--- a/kern/thread.c
+++ b/kern/thread.c
@@ -163,10 +163,14 @@ boolean_t stack_alloc_try(

        if (stack != 0) {
                stack_attach(thread, stack, resume);
+#if MACH_DEBUG
                stack_alloc_hits++;
+#endif /* MACH_DEBUG */
                return TRUE;
        } else {
+#if MACH_DEBUG
                stack_alloc_misses++;
+#endif /* MACH_DEBUG */
                return FALSE;
        }
 }

--
Melhores cumprimentos/Best regards,

Miguel Figueiredo

Reply via email to