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 _MISC_CRASHINFO_H 8 #define _MISC_CRASHINFO_H 9 #include <linux/types.h> 10 #define CRASHINFO_MAGIC "crashnfo" 11 #define CRASHINFO_MAGIC_SIZE 8 12 #define CRASHINFO_REASON_SIZE 256 13 struct crashinfo_img_hdr { 14 __u8 magic[CRASHINFO_MAGIC_SIZE]; 15 __le32 header_version; 16 __le32 header_size; 17 __le32 flags; 18 __le32 crc; 19 __le64 coredump_size; 20 char crashinfo[CRASHINFO_REASON_SIZE]; 21 } __attribute__((packed)); 22 #endif 23