blob: 801a01e3abb69f510270e0ef1b246c558924f3bc [file] [log] [blame]
Elliott Hughes8cb52b02013-11-21 13:43:23 -08001/****************************************************************************
2 ****************************************************************************
3 ***
4 *** This header was automatically generated from a Linux kernel header
5 *** of the same name, to make information necessary for userspace to
6 *** call into the kernel available to libc. It contains only constants,
7 *** structures, and macros generated from the original header, and thus,
8 *** contains no copyrightable information.
9 ***
10 *** To edit the content of this header, modify the corresponding
11 *** source file (e.g. under external/kernel-headers/original/) then
12 *** run bionic/libc/kernel/tools/update_all.py
13 ***
14 *** Any manual change here will be lost the next time this script will
15 *** be run. You've been warned!
16 ***
17 ****************************************************************************
18 ****************************************************************************/
19#ifndef _UAPI_LINUX_ANDROID_ALARM_H
20#define _UAPI_LINUX_ANDROID_ALARM_H
21#include <linux/ioctl.h>
22#include <linux/time.h>
23/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
24enum android_alarm_type {
Tao Baod7db5942015-01-28 10:07:51 -080025 ANDROID_ALARM_RTC_WAKEUP,
26 ANDROID_ALARM_RTC,
27 ANDROID_ALARM_ELAPSED_REALTIME_WAKEUP,
Elliott Hughes8cb52b02013-11-21 13:43:23 -080028/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080029 ANDROID_ALARM_ELAPSED_REALTIME,
30 ANDROID_ALARM_SYSTEMTIME,
31 ANDROID_ALARM_TYPE_COUNT,
Elliott Hughes8cb52b02013-11-21 13:43:23 -080032};
33/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
34enum android_alarm_return_flags {
Tao Baod7db5942015-01-28 10:07:51 -080035 ANDROID_ALARM_RTC_WAKEUP_MASK = 1U << ANDROID_ALARM_RTC_WAKEUP,
36 ANDROID_ALARM_RTC_MASK = 1U << ANDROID_ALARM_RTC,
37 ANDROID_ALARM_ELAPSED_REALTIME_WAKEUP_MASK = 1U << ANDROID_ALARM_ELAPSED_REALTIME_WAKEUP,
Elliott Hughes8cb52b02013-11-21 13:43:23 -080038/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080039 ANDROID_ALARM_ELAPSED_REALTIME_MASK = 1U << ANDROID_ALARM_ELAPSED_REALTIME,
40 ANDROID_ALARM_SYSTEMTIME_MASK = 1U << ANDROID_ALARM_SYSTEMTIME,
41 ANDROID_ALARM_TIME_CHANGE_MASK = 1U << 16
Elliott Hughes8cb52b02013-11-21 13:43:23 -080042};
Tao Baod7db5942015-01-28 10:07:51 -080043/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Elliott Hughes8cb52b02013-11-21 13:43:23 -080044#define ANDROID_ALARM_CLEAR(type) _IO('a', 0 | ((type) << 4))
45#define ANDROID_ALARM_WAIT _IO('a', 1)
Tao Baod7db5942015-01-28 10:07:51 -080046#define ALARM_IOW(c,type,size) _IOW('a', (c) | ((type) << 4), size)
Elliott Hughes8cb52b02013-11-21 13:43:23 -080047#define ANDROID_ALARM_SET(type) ALARM_IOW(2, type, struct timespec)
Tao Baod7db5942015-01-28 10:07:51 -080048/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Elliott Hughes8cb52b02013-11-21 13:43:23 -080049#define ANDROID_ALARM_SET_AND_WAIT(type) ALARM_IOW(3, type, struct timespec)
50#define ANDROID_ALARM_GET_TIME(type) ALARM_IOW(4, type, struct timespec)
Elliott Hughes8cb52b02013-11-21 13:43:23 -080051#define ANDROID_ALARM_SET_RTC _IOW('a', 5, struct timespec)
52#define ANDROID_ALARM_BASE_CMD(cmd) (cmd & ~(_IOC(0, 0, 0xf0, 0)))
Tao Baod7db5942015-01-28 10:07:51 -080053/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Elliott Hughes8cb52b02013-11-21 13:43:23 -080054#define ANDROID_ALARM_IOCTL_TO_TYPE(cmd) (_IOC_NR(cmd) >> 4)
55#endif