06cd098379371ecb339b8e24d44f82ccd0cb635c
[linux-flexiantxendom0-3.2.10.git] / arch / um / include / skas_ptrace.h
1 /* 
2  * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
3  * Licensed under the GPL
4  */
5
6 #ifndef __SKAS_PTRACE_H
7 #define __SKAS_PTRACE_H
8
9 #ifndef PTRACE_FAULTINFO
10
11 struct ptrace_faultinfo {
12         int is_write;
13         unsigned long addr;
14 };
15
16 struct ptrace_ldt {
17         int func;
18         void *ptr;
19         unsigned long bytecount;
20 };
21
22 #define PTRACE_FAULTINFO 52
23 #define PTRACE_SIGPENDING 53
24 #define PTRACE_LDT 54
25 #define PTRACE_SWITCH_MM 55
26
27 #endif /* def PTRACE_FAULTINFO */
28
29 #endif
30
31 /*
32  * Overrides for Emacs so that we follow Linus's tabbing style.
33  * Emacs will notice this stuff at the end of the file and automatically
34  * adjust the settings for this buffer only.  This must remain at the end
35  * of the file.
36  * ---------------------------------------------------------------------------
37  * Local variables:
38  * c-file-style: "linux"
39  * End:
40  */