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

Comparing projects/libstatgrab/src/libstatgrab/network_stats.c (file contents):
Revision 1.9 by pajs, Wed Mar 12 16:15:48 2003 UTC vs.
Revision 1.12 by pajs, Mon Mar 31 11:30:54 2003 UTC

# Line 25 | Line 25
25   #include <stdlib.h>
26   #include <string.h>
27   #include "statgrab.h"
28 < #include "time.h"
28 > #include <time.h>
29   #ifdef SOLARIS
30   #include <kstat.h>
31   #include <sys/sysinfo.h>
# Line 90 | Line 90 | network_stat_t *get_network_stats(int *entries){
90  
91   #ifdef LINUX
92          FILE *f;
93 <        /* Horrible big enough, but it should be quite easily */
93 >        /* Horrible big enough, but it should be easily big enough */
94          char line[8096];
95          regex_t regex;
96          regmatch_t line_match[4];
# Line 183 | Line 183 | network_stat_t *get_network_stats(int *entries){
183  
184                  interfaces++;
185          }
186 +        fclose(f);
187  
188   #endif
189          *entries=interfaces;
# Line 197 | Line 198 | long long transfer_diff(long long new, long long old){
198   #define MAXVAL 18446744073709551616
199   #endif
200          long long result;
201 <        if(new>old){
201 >        if(new>=old){
202                  result = (new-old);
203          }else{
204                  result = (MAXVAL+(new-old));

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines