blob: 0155133b14581e1730dd5e425a7b3e8ae61dbae0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright 2003 PathScale, Inc.
3 *
4 * Licensed under the GPL
5 */
6
7#ifndef __SYSDEP_X86_64_SIGCONTEXT_H
8#define __SYSDEP_X86_64_SIGCONTEXT_H
9
10#include <sysdep/sc.h>
11
12#define IP_RESTART_SYSCALL(ip) ((ip) -= 2)
13
Jeff Dikef0c4cad2007-10-16 01:27:18 -070014#define GET_FAULTINFO_FROM_SC(fi, sc) \
Bodo Stroesserc5784552005-05-05 16:15:31 -070015 { \
16 (fi).cr2 = SC_CR2(sc); \
17 (fi).error_code = SC_ERR(sc); \
18 (fi).trap_no = SC_TRAPNO(sc); \
19 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Bodo Stroesserc5784552005-05-05 16:15:31 -070021/* This is Page Fault */
Paolo 'Blaisorblade' Giarrussobe662a12005-09-30 11:58:59 -070022#define SEGV_IS_FIXABLE(fi) ((fi)->trap_no == 14)
23
24/* No broken SKAS API, which doesn't pass trap_no, here. */
25#define SEGV_MAYBE_FIXABLE(fi) 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#endif