| OLD | NEW |
| 1 /* Copyright (c) 2006, Google Inc. | 1 /* Copyright (c) 2006, Google Inc. |
| 2 * All rights reserved. | 2 * All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 MD_MEMORY_64_LIST_STREAM = 9, | 321 MD_MEMORY_64_LIST_STREAM = 9, |
| 322 MD_COMMENT_STREAM_A = 10, | 322 MD_COMMENT_STREAM_A = 10, |
| 323 MD_COMMENT_STREAM_W = 11, | 323 MD_COMMENT_STREAM_W = 11, |
| 324 MD_HANDLE_DATA_STREAM = 12, | 324 MD_HANDLE_DATA_STREAM = 12, |
| 325 MD_FUNCTION_TABLE_STREAM = 13, | 325 MD_FUNCTION_TABLE_STREAM = 13, |
| 326 MD_UNLOADED_MODULE_LIST_STREAM = 14, | 326 MD_UNLOADED_MODULE_LIST_STREAM = 14, |
| 327 MD_MISC_INFO_STREAM = 15, /* MDRawMiscInfo */ | 327 MD_MISC_INFO_STREAM = 15, /* MDRawMiscInfo */ |
| 328 MD_MEMORY_INFO_LIST_STREAM = 16, /* MDRawMemoryInfoList */ | 328 MD_MEMORY_INFO_LIST_STREAM = 16, /* MDRawMemoryInfoList */ |
| 329 MD_THREAD_INFO_LIST_STREAM = 17, | 329 MD_THREAD_INFO_LIST_STREAM = 17, |
| 330 MD_HANDLE_OPERATION_LIST_STREAM = 18, | 330 MD_HANDLE_OPERATION_LIST_STREAM = 18, |
| 331 MD_TOKEN_STREAM = 19, |
| 332 MD_JAVASCRIPT_DATA_STREAM = 20, |
| 333 MD_SYSTEM_MEMORY_INFO_STREAM = 21, |
| 334 MD_PROCESS_VM_COUNTERS_STREAM = 22, |
| 331 MD_LAST_RESERVED_STREAM = 0x0000ffff, | 335 MD_LAST_RESERVED_STREAM = 0x0000ffff, |
| 332 | 336 |
| 333 /* Breakpad extension types. 0x4767 = "Gg" */ | 337 /* Breakpad extension types. 0x4767 = "Gg" */ |
| 334 MD_BREAKPAD_INFO_STREAM = 0x47670001, /* MDRawBreakpadInfo */ | 338 MD_BREAKPAD_INFO_STREAM = 0x47670001, /* MDRawBreakpadInfo */ |
| 335 MD_ASSERTION_INFO_STREAM = 0x47670002, /* MDRawAssertionInfo */ | 339 MD_ASSERTION_INFO_STREAM = 0x47670002, /* MDRawAssertionInfo */ |
| 336 /* These are additional minidump stream values which are specific to | 340 /* These are additional minidump stream values which are specific to |
| 337 * the linux breakpad implementation. */ | 341 * the linux breakpad implementation. */ |
| 338 MD_LINUX_CPU_INFO = 0x47670003, /* /proc/cpuinfo */ | 342 MD_LINUX_CPU_INFO = 0x47670003, /* /proc/cpuinfo */ |
| 339 MD_LINUX_PROC_STATUS = 0x47670004, /* /proc/$x/status */ | 343 MD_LINUX_PROC_STATUS = 0x47670004, /* /proc/$x/status */ |
| 340 MD_LINUX_LSB_RELEASE = 0x47670005, /* /etc/lsb-release */ | 344 MD_LINUX_LSB_RELEASE = 0x47670005, /* /etc/lsb-release */ |
| (...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 975 uint64_t ldbase; | 979 uint64_t ldbase; |
| 976 uint64_t dynamic; | 980 uint64_t dynamic; |
| 977 } MDRawDebug64; | 981 } MDRawDebug64; |
| 978 | 982 |
| 979 #if defined(_MSC_VER) | 983 #if defined(_MSC_VER) |
| 980 #pragma warning(pop) | 984 #pragma warning(pop) |
| 981 #endif /* _MSC_VER */ | 985 #endif /* _MSC_VER */ |
| 982 | 986 |
| 983 | 987 |
| 984 #endif /* GOOGLE_BREAKPAD_COMMON_MINIDUMP_FORMAT_H__ */ | 988 #endif /* GOOGLE_BREAKPAD_COMMON_MINIDUMP_FORMAT_H__ */ |
| OLD | NEW |