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

Comparing projects/libstatgrab/src/libstatgrab/tools.c (file contents):
Revision 1.44 by ats, Tue Apr 6 17:42:16 2004 UTC vs.
Revision 1.46 by tdb, Wed Apr 7 09:44:08 2004 UTC

# Line 45 | Line 45
45   #endif
46  
47   #include "tools.h"
48 + #include "statgrab.h"
49  
50   #ifdef SOLARIS
51   #ifdef HAVE_LIBDEVINFO_H
# Line 171 | Line 172 | static int get_alias(char *alias){
172          char *value;
173          int instance;
174          if ((root_node = di_init("/", DINFOCPYALL)) == DI_NODE_NIL) {
175 <                return 1;
175 >                return -1;
176          }
177          node = di_drv_first_node(alias, root_node);
178          while (node != DI_NODE_NIL) {
# Line 213 | Line 214 | static int build_mapping(){
214          int found;
215  
216          if ((kc = kstat_open()) == NULL) {
217 <                return 1;
217 >                return -1;
218          }
219  
220          for (ksp = kc->kc_chain; ksp; ksp = ksp->ks_next) {
# Line 235 | Line 236 | static int build_mapping(){
236                                  if (x>=BIG_ENOUGH){
237                                          /* We've got bigger than we thought was massive */
238                                          /* If we hit this.. Make big enough bigger */
239 <                                        return 1;
239 >                                        return -1;
240                                  }
241                                  if( !strncmp(driver_list[x], device_name, BIG_ENOUGH)){
242                                          found = 1;
# Line 245 | Line 246 | static int build_mapping(){
246  
247                          if(!found){
248                                  if((get_alias(device_name)) != 0){
249 <                                        return 1;
249 >                                        return -1;
250                                  }
251                                  strncpy(driver_list[x], device_name, BIG_ENOUGH);
252                                  list_entries++;
# Line 479 | Line 480 | struct uvmexp *sg_get_uvmexp() {
480   int sg_init(){
481   #if (defined(FREEBSD) && !defined(FREEBSD5)) || defined(DFBSD)
482          if (sg_get_kvm() == NULL) {
483 <                return 1;
483 >                return -1;
484          }
485          if (sg_get_kvm2() == NULL) {
486 <                return 1;
486 >                return -1;
487          }
488   #endif
489   #ifdef SOLARIS
# Line 501 | Line 502 | int sg_drop_privileges() {
502          if (setegid(getgid()) != 0) return -1;
503          if (seteuid(getuid()) != 0) return -1;
504          return 0;
505 + }
506 +
507 + void *sg_realloc(void *ptr, size_t size) {
508 +        void *tmp = NULL;
509 +        tmp = realloc(ptr, size);
510 +        if(tmp == NULL) {
511 +                sg_set_error(SG_ERROR_MALLOC_FAILED, NULL);
512 +        }
513 +        return tmp;
514   }
515  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines