mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-02 11:21:12 +00:00
60d769a13a
And from all related macros and functions.
27 lines
613 B
C
27 lines
613 B
C
/*
|
|
* Linux block and network stats.
|
|
*
|
|
* Copyright (C) 2007 Red Hat, Inc.
|
|
*
|
|
* See COPYING.LIB for the License of this software
|
|
*
|
|
* Richard W.M. Jones <rjones@redhat.com>
|
|
*/
|
|
|
|
#ifndef __BLOCK_STATS_H__
|
|
# define __BLOCK_STATS_H__
|
|
|
|
# ifdef __linux__
|
|
|
|
# include "xen_driver.h"
|
|
|
|
extern int xenLinuxDomainBlockStats (xenUnifiedPrivatePtr priv,
|
|
virDomainPtr dom, const char *path,
|
|
struct _virDomainBlockStats *stats);
|
|
|
|
extern int xenLinuxDomainDeviceID(int domid, const char *dev);
|
|
|
|
# endif /* __linux__ */
|
|
|
|
#endif /* __STATS_LINUX_H__ */
|