blob: e98ad601506755c7767d6baae6a3252be05881c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* arch/arm64/kernel/kprobes.h
*
* Copyright (C) 2013 Linaro Limited.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*/
#ifndef _ARM_KERNEL_KPROBES_H
#define _ARM_KERNEL_KPROBES_H
#define JPROBES_MAGIC_NUM 0xa5a5a5a5a5a5a5a5
/* Move this out to appropriate header file */
int fixup_exception(struct pt_regs *regs);
#endif /* _ARM_KERNEL_KPROBES_H */
|