Displaying 20 results from an estimated 36 matches for "pstat".
Did you mean:
stat
2006 May 12
1
Fwd: RE New xanto driver for NUT
Dear Andreas,
some googling revealed, you created a driver for the xanto series of
online-usv.de. In what state it is currently?
I've to manage a S2000 and would like to use nut for it, is it usable by
now? Do you need another tester?
TIA,
Pete
2002 Jun 07
1
Setproctitle && HPUX, patch/fix included
Hello,
I've asked this on the openssh (regular) list before, but was directed
here. I've been trying to get the 'setproctitle' part working on HPUX
systems (11.00). I've figured out that on HP setproctitle requires
sys/pstat.h and some other settings.
I can locate sys/pstat.h on my system, but the ./configure won't find it
(it's in /usr/include/sys/pstat.h). When I force HAVE_SYS_PSTAT_H on
config.h it will still not work, since setproctitle.c has a check for
defined HAVE_PSTAT && defined PSTAT_SETCMD....
2006 Jan 03
1
Summary functions to dataframe
...;9747", "9748", "9749", "9750", "9751", "9752",
"9753", "9754", "9755", "9756", "9757", "9758", "9759", "9760",
"9761"), class = "data.frame")
Pstats <- function(x)
{
Max = max(x)
Min = min(x)
AMean = mean(x)
AStdev = sd(x)
Samples <- length(x)
p10 <- quantile(x,0.1,na.rm = TRUE, names = FALSE)
p20 <- quantile(x,0.2,na.rm = TRUE, names = FALSE)
p30 <- quantile(x,0.3,na.rm = TRUE, names = FALSE)
p40 <- q...
2005 Feb 02
1
anova.glm (PR#7624)
...4 5.12914 0.000000 1.0000000
--------------------------------------------------------------------
Yuedong Wang Phone: (805) 893-4870
Dept of Statistics & Applied Probability Fax: (805) 893-2334
Univ of California yuedong@pstat.ucsb.edu
Santa Barbara, CA 93106 http://www.pstat.ucsb.edu/faculty/yuedong
2006 Jul 24
2
fentonups driver patch for Effekta MHD3000 UPS
...uble bvoltp;
float lowbattvolt = 0;
+
+ sendcr_and_clear_buf();
+
ret = ser_send(upsfd, "Q1\r");
if (ret != 3)
***************
*** 320,331 ****
status_set("OL"); /* on line */
/* only allow these when OL since they're bogus when OB */
! if (pstat[2] == '1') { /* boost or trim in effect */
! if (util < lownorm)
! status_set("BOOST");
!
! if (util > highnorm)
! status_set("TRIM");
}
if (atof(battvolt) > chrglow) {
bvoltp = ((atof(battvolt) - chrglow) / chrgrange) * 100.0;
--- 3...
2003 Feb 01
1
Build errors on AIX 4.2.1: nanosleep
...etrieving revision 1.104
diff -u -r1.104 configure.ac
--- configure.ac 28 Jan 2003 00:33:44 -0000 1.104
+++ configure.ac 1 Feb 2003 01:49:04 -0000
@@ -388,7 +388,7 @@
rpc/types.h security/pam_appl.h shadow.h stddef.h stdint.h \
strings.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h \
sys/mman.h sys/pstat.h sys/select.h sys/stat.h \
- sys/stropts.h sys/sysmacros.h sys/time.h \
+ sys/stropts.h sys/sysmacros.h sys/time.h sys/timers.h \
sys/un.h time.h tmpdir.h ttyent.h usersec.h \
util.h utime.h utmp.h utmpx.h)
@@ -604,8 +604,8 @@
clock fchmod fchown freeaddrinfo futimes gai_strerror \
getad...
2003 Apr 11
2
no idle CPU ... system hogging it all ...
...ike:
vm.kvm_free: 809500672 - debug.numvnodes: 414708 - debug.freevnodes: 95815
which is pretty much standard for my servers ... and there are only ~1200
processes running on this one, which is a Dual PIII with 4Gb of RAM ...
Starting commands seems to take a long time ... top takes forever, and
pstat -s shows:
neptune# time pstat -s
Device 1K-blocks Used Avail Capacity Type
/dev/aacd0s1b 8388480 119916 8268564 1% Interleaved
0.245u 3.670s 0:27.39 14.2% 16+218k 0+0io 0pf+0w
And not much swap is being used for the # of processes ..
What else should I be looki...
2010 May 21
1
Time dependent Cox model
> ... interactions between covariables and time.
A model such as "coxph(Surv(ptime, pstat) ~ age + age*ptime, ...."
is invalid -- it is not at all what you think. If cph flags this as an
error that is a good thing: I should probably add the same message to
coxph.
> Is is somewhat sensible to use cox.zph() to investigate which
variables need time interaction...
The cox.zph...
2007 Sep 18
2
poll.h vs sys/poll.h on QNX Neutrino
From the ChangeLog:
- dtucker at cvs.openbsd.org 2007/06/25 12:02:27
[atomicio.c]
Include <poll.h> like the man page says rather than <sys/poll.h>.
ok djm@
This was probably ill-advised given the
history of this header file. Some older
systems, and some not-quite-XSI-compliant
systems such as QNX Neutrino, still have
<sys/poll.h> but not <poll.h>.
I
2016 Oct 26
2
use PT_DENY_ATTACH on Mac OS X
...will result in a segmentation violation in the parent
Any reason not to use it in platform_disable_tracing() ?
diff --git a/configure.ac b/configure.ac
index f5e1378..88c4633 100644
--- a/configure.ac
+++ b/configure.ac
@@ -405,6 +405,7 @@ AC_CHECK_HEADERS([ \
sys/poll.h \
sys/prctl.h \
sys/pstat.h \
+ sys/ptrace.h \
sys/select.h \
sys/stat.h \
sys/stream.h \
diff --git a/platform-tracing.c b/platform-tracing.c
index 81020e7..4c80a28 100644
--- a/platform-tracing.c
+++ b/platform-tracing.c
@@ -20,6 +20,9 @@
#if defined(HAVE_SYS_PRCTL_H)
#include <sys/prctl.h> /* For prctl() an...
2012 Feb 12
1
Longitudinal Factor Analysis
...all 5 2 xx ... xx 0
40 Fastball 5 3 xx ... xx 1
60
40 Fastball 5 4 xx ... xx 0
40 Fastball 5 5 xx ... xx 0
--
Gregory E. Gilbert, EdD, MSPH, PStat®
ASA Accredited Professional Statistician™
[[alternative HTML version deleted]]
2003 Jun 26
1
changes in kernel affecting savecore/dumps ...
...ow of *anything* that may have been commit'd in that period
of time that could have affected how a crash dumps to the dumpdev?
Note that the servers don't make much use of swap as it is ... one of the
machines that is exhibiting the problem has been up 4+days now, and swap
used is:
pluto# pstat -s
Device 1K-blocks Used Avail Capacity Type
/dev/da0s1b 8388480 10652 8377828 0% Interleaved
when pluto crashed, I was able to get in just after and run 'savecore -f'
to generate the core file, and doing a 'strings <core> | head', I compared...
2003 Jan 25
1
Build failures: nanosleep on Solaris and AIX 4.2.x
...trieving revision 1.102
diff -u -r1.102 configure.ac
--- configure.ac 20 Jan 2003 04:20:25 -0000 1.102
+++ configure.ac 25 Jan 2003 06:48:20 -0000
@@ -388,7 +388,7 @@
rpc/types.h security/pam_appl.h shadow.h stddef.h stdint.h \
strings.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h \
sys/mman.h sys/pstat.h sys/select.h sys/stat.h \
- sys/stropts.h sys/sysmacros.h sys/time.h \
+ sys/stropts.h sys/sysmacros.h sys/time.h sys/timers.h \
sys/un.h time.h tmpdir.h ttyent.h usersec.h \
util.h utime.h utmp.h utmpx.h)
@@ -604,7 +604,7 @@
clock fchmod fchown freeaddrinfo futimes gai_strerror \
getad...
2003 Jun 22
2
Problem with Configure
...... no
checking sys/bsdtty.h presence... no
checking for sys/bsdtty.h... no
checking sys/cdefs.h usability... yes
checking sys/cdefs.h presence... yes
checking for sys/cdefs.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking sys/pstat.h usability... no
checking sys/pstat.h presence... no
checking for sys/pstat.h... no
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking for sys/stat.h... (cached) yes
checking sys/stropts.h usability... no
checking sys/stropts.h pr...
2003 Jul 03
0
AIX cleanups: includes and arguments
...tlog as part of its login message
@@ -456,8 +469,8 @@
login_cap.h maillock.h netdb.h netgroup.h \
netinet/in_systm.h paths.h pty.h readpassphrase.h \
rpc/types.h security/pam_appl.h shadow.h stddef.h stdint.h \
- strings.h sys/strtio.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h \
- sys/mman.h sys/pstat.h sys/select.h sys/stat.h \
+ strings.h sys/strtio.h sys/audit.h sys/bitypes.h sys/bsdtty.h \
+ sys/cdefs.h sys/mman.h sys/pstat.h sys/select.h sys/stat.h \
sys/stropts.h sys/sysmacros.h sys/time.h sys/timers.h \
sys/un.h time.h tmpdir.h ttyent.h usersec.h \
util.h utime.h utmp.h utmpx.h)
Ind...
2006 Feb 06
1
Compile warning report of openssh 4.3p1 on Intel Macs
...ability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking sys/ndir.h usability... no
checking sys/ndir.h presence... no
checking for sys/ndir.h... no
checking sys/prctl.h usability... no
checking sys/prctl.h presence... no
checking for sys/prctl.h... no
checking sys/pstat.h usability... no
checking sys/pstat.h presence... no
checking for sys/pstat.h... no
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking sys/stat.h usability... yes
checking sys/stat.h presence... yes
checking for sys/stat.h... yes...
2006 Apr 23
0
Configuration Warnings OpenSSH 4.3p2
...## ------------------------------------------- ##
checking for sys/mman.h... yes
checking sys/ndir.h usability... no
checking sys/ndir.h presence... no
checking for sys/ndir.h... no
checking sys/prctl.h usability... no
checking sys/prctl.h presence... no
checking for sys/prctl.h... no
checking sys/pstat.h usability... no
checking sys/pstat.h presence... no
checking for sys/pstat.h... no
checking sys/select.h usability... no
checking sys/select.h presence... yes
configure: WARNING: sys/select.h: present but cannot be compiled
configure: WARNING: sys/select.h: check for missing prerequisite head...
2005 Sep 12
1
help for linear-circular correlation
Hi R-profs,
Maybe my question is a little off topic. Could any one tell me how to
calculate a linear-circular correlation coefficient and its p-values?
I had a quick look at circular and CircStats packages and did not find
the related function.
Thanks for any kindly help.
Xiaohua
--
Xiaohua Dai, Dr.
Centre for Systems Research, Durban Institute of Technology
P.O.Box 953, Durban 4000, South
2001 Jun 05
2
setproctitle
The portable OpenSSH source comes with an implementation of
setproctitle() that on some systems (Solaris for example) does nothing.
The current sendmail distributions have an alternate setproctitle()
that tries to get the effect on a wide range of systems.
Would there be any interest in a patch for the portable OpenSSH that
uses the sendmail setproctitle as a starting point to get setproctitle
2003 Jun 25
0
savecore no longer works ... /kernel version mismatch
...1 root wheel 4227792896 Jun 6 23:58 vmcore.1
-rw------- 1 root wheel 4227792896 Jun 6 10:37 vmcore.0
nothing in /etc/rc.conf has changed:
jupiter# grep dump /etc/rc.conf
dumpdev="/dev/da0s1b"
dumpdir="/vm/crash" # Directory where crash dumps are to be stored
jupiter# pstat -s
Device 1K-blocks Used Avail Capacity Type
/dev/da0s1b 8388480 0 8388480 0% Interleaved
Last one on pluto (the one I originally reported) was on May 28th:
pluto# ls -lt May9
total 2836272
-rw------- 1 root wheel 1142062312 May 30 10:33 vmcore.2.gz
-rw--...