Jon Medhurst | 2437170 | 2011-04-19 17:56:58 +0100 | [diff] [blame^] | 1 | /* |
| 2 | * arch/arm/kernel/kprobes-thumb.c |
| 3 | * |
| 4 | * Copyright (C) 2011 Jon Medhurst <tixy@yxit.co.uk>. |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/kprobes.h> |
| 13 | |
| 14 | #include "kprobes.h" |
| 15 | |
| 16 | enum kprobe_insn __kprobes |
| 17 | thumb16_kprobe_decode_insn(kprobe_opcode_t insn, struct arch_specific_insn *asi) |
| 18 | { |
| 19 | return INSN_REJECTED; |
| 20 | } |
| 21 | |
| 22 | enum kprobe_insn __kprobes |
| 23 | thumb32_kprobe_decode_insn(kprobe_opcode_t insn, struct arch_specific_insn *asi) |
| 24 | { |
| 25 | return INSN_REJECTED; |
| 26 | } |