1 /* libxenstat: statistics-collection library for Xen
2 * Copyright (C) International Business Machines Corp., 2005
3 * Authors: Josh Triplett <josht@us.ibm.com>
4 * Judy Fischbach <jfisch@us.ibm.com>
5 * David Hendricks <dhendrix@us.ibm.com>
6 *
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.1 of the License, or (at your option) any later version.
11 *
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.
16 */
17
18 /*
19 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
20 * Use is subject to license terms.
21 */
22
23 #include "xenstat_priv.h"
24
25 /* Collect information about networks */
xenstat_collect_networks(xenstat_node * node)26 int xenstat_collect_networks(xenstat_node * node)
27 {
28
29 return 1;
30 }
31
32 /* Free network information in handle */
xenstat_uninit_networks(xenstat_handle * handle)33 void xenstat_uninit_networks(xenstat_handle * handle)
34 {
35 }
36
37 /* Collect information about VBDs */
xenstat_collect_vbds(xenstat_node * node)38 int xenstat_collect_vbds(xenstat_node * node)
39 {
40
41 return 1;
42 }
43
44 /* Free VBD information in handle */
xenstat_uninit_vbds(xenstat_handle * handle)45 void xenstat_uninit_vbds(xenstat_handle * handle)
46 {
47 }
48