You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
378 B
22 lines
378 B
/*
|
|
* Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
|
|
* Licensed under the GPL
|
|
*/
|
|
|
|
#ifndef __SYSDEP_X86_64_SKAS_PTRACE_H
|
|
#define __SYSDEP_X86_64_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
|
|
|