nfs-ganesha 1.4
|
00001 /* 00002 * vim:expandtab:shiftwidth=8:tabstop=8: 00003 */ 00004 00014 #ifdef HAVE_CONFIG_H 00015 #include "config.h" 00016 #endif 00017 00018 #ifdef _SOLARIS 00019 #include "solaris_port.h" 00020 #endif /* _SOLARIS */ 00021 00022 #include "fsal.h" 00023 #include "fsal_internal.h" 00024 00037 void PROXYFSAL_get_stats(fsal_statistics_t * stats, /* OUT */ 00038 fsal_boolean_t reset /* IN */ 00039 ) 00040 { 00041 00042 /* sanity check. */ 00043 if(!stats) 00044 return; 00045 00046 /* returns stats for this thread. */ 00047 fsal_internal_getstats(stats); 00048 00049 return; 00050 }