ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/examples/vm_stats.c
(Generate patch)

Comparing projects/libstatgrab/examples/vm_stats.c (file contents):
Revision 1.8 by tdb, Sun Apr 4 22:48:49 2004 UTC vs.
Revision 1.9 by tdb, Mon Apr 5 16:23:08 2004 UTC

# Line 27 | Line 27
27  
28   int main(int argc, char **argv){
29  
30 <        mem_stat_t *mem_stats;
31 <        swap_stat_t *swap_stats;
30 >        sg_mem_stats *mem_stats;
31 >        sg_swap_stats *swap_stats;
32  
33          long long total, free;
34  
35          /* Initialise statgrab */
36 <        statgrab_init();
36 >        sg_init();
37  
38          /* Drop setuid/setgid privileges. */
39 <        if (statgrab_drop_privileges() != 0) {
39 >        if (sg_drop_privileges() != 0) {
40                  perror("Error. Failed to drop privileges");
41                  return 1;
42          }
43  
44 <        if( ((mem_stats=get_memory_stats()) != NULL) && (swap_stats=get_swap_stats()) != NULL){
44 >        if( ((mem_stats=sg_get_mem_stats()) != NULL) && (swap_stats=sg_get_swap_stats()) != NULL){
45                  printf("Total memory in bytes : %lld\n", mem_stats->total);
46                  printf("Used memory in bytes : %lld\n", mem_stats->used);
47                  printf("Cache memory in bytes : %lld\n", mem_stats->cache);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines