00001 /*00002 * @file read_statm.h00003 * @brief returns statm memory statistics for current process (see man proc)00004 * @param vm_pages total program size in unit of pages00005 * @param rss_pages resident set size in unit of pages00006 * @author Sebastien Binet, Paolo Calafiura00007 * $Id: read_athena_statm.h 592439 2014-04-10 17:35:29Z calaf $00008 */00009struct athena_statm {
00010 unsignedint vm_pages;
00011 unsignedint rss_pages;
00012 };
00013 #ifdef __cplusplus00014 extern"C"00015 #endif00016 struct athena_statm read_athena_statm();