1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /* vim:set expandtab ts=4 shiftwidth=4: */
4 * Copyright (c) 2008, 2010 Oracle and/or its affiliates, Inc. All rights
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General
18 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 * Authors: Lin Ma <lin.ma@sun.com>
25 #include <glib/gprintf.h>
29 G_LOCK_EXTERN (fen_lock);
31 /*-------------------- node ------------------*/
33 dump_node (node_t* node, gpointer data)
35 g_printf ("n:0x%p ds:0x%p s:0x%p %s\n", node, node->dir_subs, node->subs, NODE_NAME(node));
39 dump_tree (node_t* node)
41 if (G_TRYLOCK (fen_lock)) {
42 node_traverse(NULL, dump_node, NULL);
47 /* ------------------ fdata port hash --------------------*/
49 dump_hash_cb (gpointer key,
53 g_printf ("k:0x%p v:0x%p >\n", key, value);
57 dump_hash (GHashTable* hash, gpointer user_data)
59 if (G_TRYLOCK (fen_lock)) {
60 if (g_hash_table_size (hash) > 0) {
61 g_hash_table_foreach (hash, dump_hash_cb, user_data);
68 /* ------------------ event --------------------*/
70 dump_event (node_event_t* ev, gpointer user_data)
72 node_t* node = ev->user_data;
73 g_printf ("ne:0x%p e:%p n:0x%p ds:0x%p s:0x%p s\n", ev, ev->e, node, node->dir_subs, node->subs, NODE_NAME(node));