git: https://android.googlesource.com/kernel/common branch: android-4.9 commit: 03fcc2fe71308c2d164b4e6cbfc738c63e670444
16 lines
352 B
C
16 lines
352 B
C
#ifndef ARCH__X86__MM__KMEMCHECK__ERROR_H
|
|
#define ARCH__X86__MM__KMEMCHECK__ERROR_H
|
|
|
|
#include <linux/ptrace.h>
|
|
|
|
#include "shadow.h"
|
|
|
|
void kmemcheck_error_save(enum kmemcheck_shadow state,
|
|
unsigned long address, unsigned int size, struct pt_regs *regs);
|
|
|
|
void kmemcheck_error_save_bug(struct pt_regs *regs);
|
|
|
|
void kmemcheck_error_recall(void);
|
|
|
|
#endif
|