mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 12:41:55 +00:00
5c48b108ec
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Richard Weinberger <richard@nod.at>
23 lines
372 B
C
23 lines
372 B
C
/*
|
|
* Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
|
|
* Licensed under the GPL
|
|
*/
|
|
|
|
#ifndef __SYSDEP_X86_SKAS_PTRACE_H
|
|
#define __SYSDEP_X86_SKAS_PTRACE_H
|
|
|
|
struct ptrace_faultinfo {
|
|
int is_write;
|
|
unsigned long addr;
|
|
};
|
|
|
|
struct ptrace_ldt {
|
|
int func;
|
|
void *ptr;
|
|
unsigned long bytecount;
|
|
};
|
|
|
|
#define PTRACE_LDT 54
|
|
|
|
#endif
|