mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-02 11:21:12 +00:00
36d8e7d8d7
* global: patch created by running: for f in $(git ls-files '*.[ch]') ; do cppi $f > $f.t && mv $f.t $f done
24 lines
469 B
C
24 lines
469 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 __STATS_LINUX_H__
|
|
# define __STATS_LINUX_H__
|
|
|
|
# ifdef __linux__
|
|
|
|
# include "internal.h"
|
|
|
|
extern int linuxDomainInterfaceStats(const char *path,
|
|
struct _virDomainInterfaceStats *stats);
|
|
|
|
# endif /* __linux__ */
|
|
|
|
#endif /* __STATS_LINUX_H__ */
|