-
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.
yaml --- r: 4255 b: refs/heads/master c: d67b569 h: refs/heads/master i: 4253: 9adeaf9 4251: 05aa5f6 4247: 46bfc18 4239: aafc6fc 4223: 15d672f v: v3
- Loading branch information
Jeff Dike
authored and
Linus Torvalds
committed
Jul 8, 2005
1 parent
6a72098
commit 96b83cc
Showing
39 changed files
with
854 additions
and
266 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 1322ad41513f8f9196801f53cc0851df056f3478 | ||
refs/heads/master: d67b569f5f620c0fb95d5212642746b7ba9d29e4 |
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
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* | ||
* Copyright (C) 2004 Jeff Dike (jdike@addtoit.com) | ||
* Licensed under the GPL | ||
*/ | ||
|
||
#ifndef __SYSDEP_STUB_H | ||
#define __SYSDEP_STUB_H | ||
|
||
#include <asm/ptrace.h> | ||
#include <asm/unistd.h> | ||
|
||
extern void stub_segv_handler(int sig); | ||
|
||
#define STUB_SYSCALL_RET EAX | ||
#define STUB_MMAP_NR __NR_mmap2 | ||
#define MMAP_OFFSET(o) ((o) >> PAGE_SHIFT) | ||
|
||
#endif |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* | ||
* Copyright (C) 2004 Jeff Dike (jdike@addtoit.com) | ||
* Licensed under the GPL | ||
*/ | ||
|
||
#ifndef __SYSDEP_STUB_H | ||
#define __SYSDEP_STUB_H | ||
|
||
#include <asm/ptrace.h> | ||
#include <asm/unistd.h> | ||
#include <sysdep/ptrace_user.h> | ||
|
||
extern void stub_segv_handler(int sig); | ||
|
||
#define STUB_SYSCALL_RET PT_INDEX(RAX) | ||
#define STUB_MMAP_NR __NR_mmap | ||
#define MMAP_OFFSET(o) (o) | ||
|
||
#endif |
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
Oops, something went wrong.