blob: 87060171c7c77800ef858a0bfab7d6a4adaf9c02 [file] [log] [blame]
Elliott Hughes180edef2023-11-02 00:08:05 +00001/*
2 * This file is auto-generated. Modifications will be lost.
3 *
4 * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/
5 * for more information.
6 */
Christopher Ferrisaf09c702020-06-01 20:29:29 -07007#ifndef _UAPI_LINUX_UM_TIMETRAVEL_H
8#define _UAPI_LINUX_UM_TIMETRAVEL_H
9#include <linux/types.h>
10struct um_timetravel_msg {
11 __u32 op;
12 __u32 seq;
13 __u64 time;
14};
15enum um_timetravel_ops {
16 UM_TIMETRAVEL_ACK = 0,
17 UM_TIMETRAVEL_START = 1,
18 UM_TIMETRAVEL_REQUEST = 2,
19 UM_TIMETRAVEL_WAIT = 3,
20 UM_TIMETRAVEL_GET = 4,
21 UM_TIMETRAVEL_UPDATE = 5,
22 UM_TIMETRAVEL_RUN = 6,
23 UM_TIMETRAVEL_FREE_UNTIL = 7,
24 UM_TIMETRAVEL_GET_TOD = 8,
Christopher Ferrisaf09c702020-06-01 20:29:29 -070025};
26#endif