4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
23 /* Copyright (c) 1994 - 2001 by Sun Microsystems, Inc. */
24 /* All rights reserved. */
29 #pragma ident "%Z%%M% %I% %E% SMI"
36 * path shared by powerd and pmconfig
38 #define PIDPATH "/var/run/powerd.pid"
41 * AutoShutdown configuration data
44 int pd_flags
; /* Status of powerd */
45 int pd_idle_time
; /* in minutes */
46 int pd_start_time
; /* in minutes since midnight */
47 int pd_finish_time
; /* in minutes since midnight */
49 int pd_autoresume
; /* Autoresume active */
50 int pd_autoshutdown
; /* Autoshutdown active */
52 int pd_ttychars_idle
; /* Tty chars idle time */
53 int pd_ttychars_sum
; /* Sum of tty chars */
54 int pd_loadaverage_idle
; /* Load average idle time */
55 float pd_loadaverage
; /* Load average */
56 int pd_diskreads_idle
; /* Disk reads idle time */
57 int pd_diskreads_sum
; /* Sum of disk reads */
58 int pd_nfsreqs_idle
; /* NFS requests idle time */
59 int pd_nfsreqs_sum
; /* Sum of NFS requests */
61 typedef struct pwr_info pwr_info_t
;
63 /* Various status flags for pd_flags */
65 #define PD_AUTORESUME 0x04
66 #define PD_RESUME_ON 0x08
72 #endif /* _POWERD_H */