/arch/um/sys-ppc/shared/sysdep/skas_ptrace.h
C++ Header | 22 lines | 13 code | 5 blank | 4 comment | 0 complexity | 91f539d9681f78141cc27ea38d0a2de7 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.0, AGPL-1.0
1/* 2 * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com) 3 * Licensed under the GPL 4 */ 5 6#ifndef __SYSDEP_PPC_SKAS_PTRACE_H 7#define __SYSDEP_PPC_SKAS_PTRACE_H 8 9struct ptrace_faultinfo { 10 int is_write; 11 unsigned long addr; 12}; 13 14struct ptrace_ldt { 15 int func; 16 void *ptr; 17 unsigned long bytecount; 18}; 19 20#define PTRACE_LDT 54 21 22#endif