ARM: kprobes: Add Thumb breakpoint support
[deliverable/linux.git] / arch / arm / kernel / kprobes-thumb.c
CommitLineData
24371707
JM
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
16enum kprobe_insn __kprobes
17thumb16_kprobe_decode_insn(kprobe_opcode_t insn, struct arch_specific_insn *asi)
18{
19 return INSN_REJECTED;
20}
21
22enum kprobe_insn __kprobes
23thumb32_kprobe_decode_insn(kprobe_opcode_t insn, struct arch_specific_insn *asi)
24{
25 return INSN_REJECTED;
26}
This page took 0.024134 seconds and 5 git commands to generate.