2023-11-02 01:08:05 +01:00
|
|
|
/*
|
|
|
|
* This file is auto-generated. Modifications will be lost.
|
|
|
|
*
|
|
|
|
* See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/
|
|
|
|
* for more information.
|
|
|
|
*/
|
2013-10-17 01:09:24 +02:00
|
|
|
#ifndef _UAPI_LINUX_HW_BREAKPOINT_H
|
|
|
|
#define _UAPI_LINUX_HW_BREAKPOINT_H
|
|
|
|
enum {
|
2015-01-28 19:07:51 +01:00
|
|
|
HW_BREAKPOINT_LEN_1 = 1,
|
|
|
|
HW_BREAKPOINT_LEN_2 = 2,
|
2017-02-21 21:35:09 +01:00
|
|
|
HW_BREAKPOINT_LEN_3 = 3,
|
2015-01-28 19:07:51 +01:00
|
|
|
HW_BREAKPOINT_LEN_4 = 4,
|
2017-02-21 21:35:09 +01:00
|
|
|
HW_BREAKPOINT_LEN_5 = 5,
|
|
|
|
HW_BREAKPOINT_LEN_6 = 6,
|
|
|
|
HW_BREAKPOINT_LEN_7 = 7,
|
2015-01-28 19:07:51 +01:00
|
|
|
HW_BREAKPOINT_LEN_8 = 8,
|
2013-10-17 01:09:24 +02:00
|
|
|
};
|
|
|
|
enum {
|
2015-01-28 19:07:51 +01:00
|
|
|
HW_BREAKPOINT_EMPTY = 0,
|
|
|
|
HW_BREAKPOINT_R = 1,
|
|
|
|
HW_BREAKPOINT_W = 2,
|
|
|
|
HW_BREAKPOINT_RW = HW_BREAKPOINT_R | HW_BREAKPOINT_W,
|
|
|
|
HW_BREAKPOINT_X = 4,
|
|
|
|
HW_BREAKPOINT_INVALID = HW_BREAKPOINT_RW | HW_BREAKPOINT_X,
|
2013-10-17 01:09:24 +02:00
|
|
|
};
|
2013-01-14 20:28:26 +01:00
|
|
|
#endif
|