1 /* 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 */ 7 #ifndef _UAPI_LINUX_HW_BREAKPOINT_H 8 #define _UAPI_LINUX_HW_BREAKPOINT_H 9 enum { 10 HW_BREAKPOINT_LEN_1 = 1, 11 HW_BREAKPOINT_LEN_2 = 2, 12 HW_BREAKPOINT_LEN_3 = 3, 13 HW_BREAKPOINT_LEN_4 = 4, 14 HW_BREAKPOINT_LEN_5 = 5, 15 HW_BREAKPOINT_LEN_6 = 6, 16 HW_BREAKPOINT_LEN_7 = 7, 17 HW_BREAKPOINT_LEN_8 = 8, 18 }; 19 enum { 20 HW_BREAKPOINT_EMPTY = 0, 21 HW_BREAKPOINT_R = 1, 22 HW_BREAKPOINT_W = 2, 23 HW_BREAKPOINT_RW = HW_BREAKPOINT_R | HW_BREAKPOINT_W, 24 HW_BREAKPOINT_X = 4, 25 HW_BREAKPOINT_INVALID = HW_BREAKPOINT_RW | HW_BREAKPOINT_X, 26 }; 27 #endif 28