[gtk/wip/matthiasc/css-values: 1/14] Revert "dump css value stats"



commit 74e59bf74d94492b0a10b0b456d1ba91838260ef
Author: Matthias Clasen <mclasen redhat com>
Date:   Mon Jan 13 09:20:28 2020 -0500

    Revert "dump css value stats"
    
    This reverts commit 2b9e5bdb4b1845bb3f25383dde8e963bcb18eaa8.

 gtk/gtkcssvalue.c | 52 ----------------------------------------------------
 1 file changed, 52 deletions(-)
---
diff --git a/gtk/gtkcssvalue.c b/gtk/gtkcssvalue.c
index 87deca7545..c668447e23 100644
--- a/gtk/gtkcssvalue.c
+++ b/gtk/gtkcssvalue.c
@@ -29,54 +29,6 @@ struct _GtkCssValue {
 
 G_DEFINE_BOXED_TYPE (GtkCssValue, _gtk_css_value, _gtk_css_value_ref, _gtk_css_value_unref)
 
-static GHashTable *counters;
-
-static void
-dump_value_counts (void)
-{
-  GHashTableIter iter;
-  gpointer key;
-  gpointer value;
-
-  int sum1 = 0, sum2 = 0;
-  g_hash_table_iter_init (&iter, counters);
-  while (g_hash_table_iter_next (&iter, &key, &value))
-    {
-       const char *class = key;
-       int *c = value;
-       if (c[0] != 1)
-         g_print ("%d %d %s\n", c[0], c[0] - c[1], class);
-
-       sum1 += c[0];
-       sum2 += c[0] - c[1];
-    }
-
-  g_print ("SUM: %d, %d\n", sum1, sum2);
-}
-
-static void
-count_value (const char *class, int delta)
-{
-  int *c;
-
-  if (!counters)
-    {
-      counters = g_hash_table_new (g_str_hash, g_str_equal);
-      atexit (dump_value_counts);
-    }
-  c = g_hash_table_lookup (counters, class);
-  if (!c)
-    {
-       c = g_new0 (int, 2);
-       g_hash_table_insert (counters, (gpointer)class, c);
-    }
-
-  if (delta == 1)
-    c[0]++;
-  else
-    c[1]++;
-}
-
 GtkCssValue *
 _gtk_css_value_alloc (const GtkCssValueClass *klass,
                       gsize                   size)
@@ -88,8 +40,6 @@ _gtk_css_value_alloc (const GtkCssValueClass *klass,
   value->class = klass;
   value->ref_count = 1;
 
-  count_value (klass->type_name, 1);
-
   return value;
 }
 
@@ -113,8 +63,6 @@ gtk_css_value_unref (GtkCssValue *value)
   if (value->ref_count > 0)
     return;
 
-  count_value (value->class->type_name, -1);
-
   value->class->free (value);
 }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]