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.6 by tdb, Fri Jan 16 15:54:52 2004 UTC vs.
Revision 1.8 by tdb, Sun Apr 4 22:48:49 2004 UTC

# Line 16 | Line 16
16   * You should have received a copy of the GNU General Public License
17   * along with this program; if not, write to the Free Software
18   * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19 + *
20 + * $Id$
21   */
22  
23   #include <stdio.h>
# Line 25 | Line 27
27  
28   int main(int argc, char **argv){
29  
28        extern char *optarg;
29        extern int optind;
30        int c;
31
32        int delay = 1;
30          mem_stat_t *mem_stats;
31          swap_stat_t *swap_stats;
32  
33          long long total, free;
34  
38        while ((c = getopt(argc, argv, "d:")) != -1){
39                switch (c){
40                        case 'd':
41                                delay = atoi(optarg);
42                                break;
43                }
44        }
45
35          /* Initialise statgrab */
36          statgrab_init();
37  
# Line 67 | Line 56 | int main(int argc, char **argv){
56  
57                  printf("Total VM usage : %5.2f%%\n", 100 - (((float)total/(float)free)));
58  
59 +        }
60 +        else {
61 +                printf("Unable to get VM stats.\n");
62 +                exit(1);
63          }
64          exit(0);
65   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines