• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef _CRASH_PROCESS_H_
2 #define _CRASH_PROCESS_H_
3 
4 #define STEP_LENGTH 12
5 #define BYTES_PER_WORD 4
6 
7 int analyse_crash_info(const unsigned char *buf, const int buf_len,
8                        char *out_crash_analyzer_str,
9                        int max_out_crash_analyzer_str_size);
10 #endif
11