blob: 48b0f3912632f98d48ae22e40945d057aa393269 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/cris/kernel/ptrace.c
3 *
4 * Parts taken from the m68k port.
Jesper Nilsson1b7e7da2008-01-28 16:30:35 +01005 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Copyright (c) 2000, 2001, 2002 Axis Communications AB
7 *
8 * Authors: Bjorn Wesen
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
12#include <linux/kernel.h>
13#include <linux/sched.h>
14#include <linux/mm.h>
15#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/errno.h>
17#include <linux/ptrace.h>
18#include <linux/user.h>
David Howells733e5e42009-09-09 08:30:21 +010019#include <linux/tracehook.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include <asm/uaccess.h>
22#include <asm/page.h>
23#include <asm/pgtable.h>
24#include <asm/system.h>
25#include <asm/processor.h>
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28/* notification of userspace execution resumption
29 * - triggered by current->work.notify_resume
30 */
Jesper Nilsson7b275522007-11-14 17:00:59 -080031extern int do_signal(int canrestart, struct pt_regs *regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33
Jesper Nilsson7b275522007-11-14 17:00:59 -080034void do_notify_resume(int canrestart, struct pt_regs *regs,
Jesper Nilsson1b7e7da2008-01-28 16:30:35 +010035 __u32 thread_info_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
37 /* deal with pending signal delivery */
38 if (thread_info_flags & _TIF_SIGPENDING)
Jesper Nilsson7b275522007-11-14 17:00:59 -080039 do_signal(canrestart,regs);
David Howellsd0420c82009-09-02 09:14:16 +010040
41 if (thread_info_flags & _TIF_NOTIFY_RESUME) {
42 clear_thread_flag(TIF_NOTIFY_RESUME);
43 tracehook_notify_resume(regs);
David Howellsee18d642009-09-02 09:14:21 +010044 if (current->replacement_session_keyring)
45 key_replace_session_keyring();
David Howellsd0420c82009-09-02 09:14:16 +010046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070047}