-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Richard Weinberger <richard@nod.at>
- Loading branch information
Al Viro
authored and
Richard Weinberger
committed
Nov 2, 2011
1 parent
a10c95d
commit 966e803
Showing
9 changed files
with
35 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,27 @@ | ||
#include <generated/user_constants.h> | ||
|
||
#define PT_OFFSET(r) ((r) * sizeof(long)) | ||
|
||
#define PT_SYSCALL_NR(regs) ((regs)[HOST_ORIG_AX]) | ||
#define PT_SYSCALL_NR_OFFSET PT_OFFSET(HOST_ORIG_AX) | ||
|
||
#define PT_SYSCALL_RET_OFFSET PT_OFFSET(HOST_AX) | ||
|
||
#define REGS_IP_INDEX HOST_IP | ||
#define REGS_SP_INDEX HOST_SP | ||
|
||
#ifdef __i386__ | ||
#include "ptrace_user_32.h" | ||
#define FP_SIZE ((HOST_FPX_SIZE > HOST_FP_SIZE) ? HOST_FPX_SIZE : HOST_FP_SIZE) | ||
#else | ||
#include "ptrace_user_64.h" | ||
#define FP_SIZE HOST_FP_SIZE | ||
|
||
/* | ||
* x86_64 FC3 doesn't define this in /usr/include/linux/ptrace.h even though | ||
* it's defined in the kernel's include/linux/ptrace.h. Additionally, use the | ||
* 2.4 name and value for 2.4 host compatibility. | ||
*/ | ||
#ifndef PTRACE_OLDSETOPTIONS | ||
#define PTRACE_OLDSETOPTIONS 21 | ||
#endif | ||
|
||
#endif |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters