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.56 by ats, Sun Jul 18 21:30:12 2004 UTC vs.
Revision 1.59 by ats, Sat Nov 6 14:55:53 2004 UTC

# Line 42 | Line 42
42   #include <sys/param.h>
43   #include <sys/sysctl.h>
44   #endif
45 + #ifdef HPUX
46 + #include <sys/param.h>
47 + #include <sys/pstat.h>
48 + #endif
49  
50   #include "tools.h"
51   #include "statgrab.h"
# Line 489 | Line 493 | struct uvmexp *sg_get_uvmexp() {
493   }
494   #endif
495  
496 + #ifdef HPUX
497 + struct pst_static *sg_get_pstat_static() {
498 +        static int got = 0;
499 +        static struct pst_static pst;
500 +
501 +        if (!got) {
502 +                if (pstat_getstatic(&pst, sizeof pst, 1, 0) == -1) {
503 +                        sg_set_error_with_errno(SG_ERROR_PSTAT,
504 +                                                "pstat_static");
505 +                        return NULL;
506 +                }
507 +                got = 1;
508 +        }
509 +        return &pst;
510 + }
511 + #endif
512 +
513   int sg_init(){
514          sg_set_error(SG_ERROR_NONE, NULL);
515  
# Line 513 | Line 534 | int sg_init(){
534   }
535  
536   int sg_drop_privileges() {
537 + #ifdef HAVE_SETEGID
538          if (setegid(getgid()) != 0) {
539 + #elif defined(HAVE_SETRESGID)
540 +        if (setresgid(getgid(), getgid(), getgid()) != 0) {
541 + #else
542 +        {
543 + #endif
544                  sg_set_error_with_errno(SG_ERROR_SETEGID, NULL);
545                  return -1;
546          }
547 + #ifdef HAVE_SETEUID
548          if (seteuid(getuid()) != 0) {
549 + #elif defined(HAVE_SETRESUID)
550 +        if (setresuid(getuid(), getuid(), getuid()) != 0) {
551 + #else
552 +        {
553 + #endif
554                  sg_set_error_with_errno(SG_ERROR_SETEUID, NULL);
555                  return -1;
556          }
# Line 532 | Line 565 | void *sg_realloc(void *ptr, size_t size) {
565          }
566          return tmp;
567   }
535

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines