Server IP : 127.0.0.2 / Your IP : 3.17.68.195 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /lib/modules/4.4.0-1084-aws/build/include/linux/ |
Upload File : |
/* -*- linux-c -*- * * (C) 2003 zecke@handhelds.org * * GPL version 2 * * based on arch/arm/kernel/apm.c * factor out the information needed by architectures to provide * apm status */ #ifndef __LINUX_APM_EMULATION_H #define __LINUX_APM_EMULATION_H #include <linux/apm_bios.h> /* * This structure gets filled in by the machine specific 'get_power_status' * implementation. Any fields which are not set default to a safe value. */ struct apm_power_info { unsigned char ac_line_status; #define APM_AC_OFFLINE 0 #define APM_AC_ONLINE 1 #define APM_AC_BACKUP 2 #define APM_AC_UNKNOWN 0xff unsigned char battery_status; #define APM_BATTERY_STATUS_HIGH 0 #define APM_BATTERY_STATUS_LOW 1 #define APM_BATTERY_STATUS_CRITICAL 2 #define APM_BATTERY_STATUS_CHARGING 3 #define APM_BATTERY_STATUS_NOT_PRESENT 4 #define APM_BATTERY_STATUS_UNKNOWN 0xff unsigned char battery_flag; #define APM_BATTERY_FLAG_HIGH (1 << 0) #define APM_BATTERY_FLAG_LOW (1 << 1) #define APM_BATTERY_FLAG_CRITICAL (1 << 2) #define APM_BATTERY_FLAG_CHARGING (1 << 3) #define APM_BATTERY_FLAG_NOT_PRESENT (1 << 7) #define APM_BATTERY_FLAG_UNKNOWN 0xff int battery_life; int time; int units; #define APM_UNITS_MINS 0 #define APM_UNITS_SECS 1 #define APM_UNITS_UNKNOWN -1 }; /* * This allows machines to provide their own "apm get power status" function. */ extern void (*apm_get_power_status)(struct apm_power_info *); /* * Queue an event (APM_SYS_SUSPEND or APM_CRITICAL_SUSPEND) */ void apm_queue_event(apm_event_t event); #endif /* __LINUX_APM_EMULATION_H */