~ubuntu-branches/ubuntu/precise/eglibc/precise-201308281639

« back to all changes in this revision

Viewing changes to sysdeps/unix/sysv/linux/s390/sys/ptrace.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2012-02-08 01:58:09 UTC
  • mfrom: (1.5.3) (288.1.12 precise)
  • Revision ID: package-import@ubuntu.com-20120208015809-ulscst7uteq3e22z
Tags: 2.15~pre6-0ubuntu10
Merge from Debian (r5151, 2.13-26).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* `ptrace' debugger support interface.  Linux version.
2
 
   Copyright (C) 2000, 2006, 2007 Free Software Foundation, Inc.
 
2
   Copyright (C) 2000, 2006, 2007, 2011 Free Software Foundation, Inc.
3
3
   Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com).
4
4
   This file is part of the GNU C Library.
5
5
 
134
134
#define PT_GETSIGINFO PTRACE_GETSIGINFO
135
135
 
136
136
  /* Set new siginfo for process.  */
137
 
  PTRACE_SETSIGINFO = 0x4203
 
137
  PTRACE_SETSIGINFO = 0x4203,
138
138
#define PT_SETSIGINFO PTRACE_SETSIGINFO
 
139
 
 
140
  /* Get register content.  */
 
141
  PTRACE_GETREGSET = 0x4204,
 
142
#define PTRACE_GETREGSET PTRACE_GETREGSET
 
143
 
 
144
  /* Set register content.  */
 
145
  PTRACE_SETREGSET = 0x4205,
 
146
#define PTRACE_SETREGSET PTRACE_SETREGSET
 
147
 
 
148
  /* Like PTRACE_ATTACH, but do not force tracee to trap and do not affect
 
149
     signal or group stop state.  */
 
150
  PTRACE_SEIZE = 0x4206,
 
151
#define PTRACE_SEIZE PTRACE_SEIZE
 
152
 
 
153
  /* Trap seized tracee.  */
 
154
  PTRACE_INTERRUPT = 0x4207,
 
155
#define PTRACE_INTERRUPT PTRACE_INTERRUPT
 
156
 
 
157
  /* Wait for next group event.  */
 
158
  PTRACE_LISTEN = 0x4208
 
159
};
 
160
 
 
161
 
 
162
/* Flag for PTRACE_LISTEN.  */
 
163
enum __ptrace_flags
 
164
{
 
165
  PTRACE_SEIZE_DEVEL = 0x80000000
139
166
};
140
167
 
141
168
/* Options set using PTRACE_SETOPTIONS.  */