blob: 682dd5376511ed27b04ab8c9f7f5f84f2b2d2f76 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef CRASHDUMP_H
#define CRASHDUMP_H
extern int get_crash_notes_per_cpu(int cpu, uint64_t *addr);
/* Need to find a better way to determine per cpu notes section size. */
#define MAX_NOTE_BYTES 1024
#endif /* CRASHDUMP_H */
|