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

« 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: 2011-10-04 17:48:26 UTC
  • mfrom: (216.1.23 oneiric)
  • Revision ID: package-import@ubuntu.com-20111004174826-2cyb9ewn3ucymlsx
Tags: 2.13-20ubuntu5
libc6-dev: Don't break the current {gnat,gcj}-4.4-base versons. LP: #853688.

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, 2011 Free Software Foundation, Inc.
 
2
   Copyright (C) 2000, 2006, 2007 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
166
139
};
167
140
 
168
141
/* Options set using PTRACE_SETOPTIONS.  */