You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
352 B
15 lines
352 B
#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
|
|
|