~ubuntu-branches/ubuntu/precise/linux-lowlatency/precise

« back to all changes in this revision

Viewing changes to arch/x86/um/shared/sysdep/skas_ptrace.h

  • Committer: Package Import Robot
  • Author(s): Alessio Igor Bogani
  • Date: 2011-10-26 11:13:05 UTC
  • Revision ID: package-import@ubuntu.com-20111026111305-tz023xykf0i6eosh
Tags: upstream-3.2.0
ImportĀ upstreamĀ versionĀ 3.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
 
3
 * Licensed under the GPL
 
4
 */
 
5
 
 
6
#ifndef __SYSDEP_X86_SKAS_PTRACE_H
 
7
#define __SYSDEP_X86_SKAS_PTRACE_H
 
8
 
 
9
struct ptrace_faultinfo {
 
10
        int is_write;
 
11
        unsigned long addr;
 
12
};
 
13
 
 
14
struct ptrace_ldt {
 
15
        int func;
 
16
        void *ptr;
 
17
        unsigned long bytecount;
 
18
};
 
19
 
 
20
#define PTRACE_LDT 54
 
21
 
 
22
#endif