add debug shit
This commit is contained in:
parent
3740966916
commit
4b0e4af80a
1 changed files with 18 additions and 1 deletions
|
@ -33,10 +33,27 @@ dest(gpointer data)
|
|||
#ifdef DEBUG
|
||||
RrColor *c = data;
|
||||
if (c->refcount > 0)
|
||||
g_error("removing color from hash table with references");
|
||||
g_error("color %d (%d,%d,%d) in hash table with %d "
|
||||
"leftover references",
|
||||
c->id, RrColorRed(c), RrColorGreen(c), RrColorBlue(c),
|
||||
c->refcount);
|
||||
#endif
|
||||
}
|
||||
|
||||
#if 0
|
||||
static void f(gpointer key, gpointer value, gpointer n)
|
||||
{
|
||||
RrColor *c = value;
|
||||
if (c->id == *(int*)n)
|
||||
g_message("color %d has %d references", c->id, c->refcount);
|
||||
}
|
||||
|
||||
void print_refs(int id)
|
||||
{
|
||||
g_hash_table_foreach(RrColorHash(definst), f, &id);
|
||||
}
|
||||
#endif
|
||||
|
||||
RrInstance* RrInstanceNew (Display *display, gint screen)
|
||||
{
|
||||
definst = g_new (RrInstance, 1);
|
||||
|
|
Loading…
Reference in a new issue