~ubuntu-branches/ubuntu/trusty/eglibc/trusty

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Adam Conrad
  • Date: 2013-01-10 18:39:35 UTC
  • mfrom: (1.5.2) (4.4.24 experimental)
  • Revision ID: package-import@ubuntu.com-20130110183935-afsgfxkmg7wk5eaj
Tags: 2.17-0ubuntu1
* Merge with Debian, bringing in a new upstream and many small fixes:
  - patches/any/cvs-malloc-deadlock.diff: Dropped, merged upstream.
  - patches/ubuntu/lddebug-scopes.diff: Rebase for upstream changes.
  - patches/ubuntu/local-CVE-2012-3406.diff: Rebased against upstream.
  - patches/ubuntu/no-asm-mtune-i686.diff: Fixed in recent binutils.
* This upstream merge fixes a nasty hang in pulseaudio (LP: #1085342)
* Bump MIN_KERNEL_SUPPORTED to 2.6.32 on ARM, now that we no longer
  have to support shonky 2.6.31 kernels on imx51 babbage builders.
* Drop patches/ubuntu/local-disable-nscd-host-caching.diff, as these
  issues were apparently resolved upstream a while ago (LP: #613662)
* Fix the compiled-in bug URL to point to launchpad.net, not Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (C) 2011 Free Software Foundation, Inc.
 
1
/* Copyright (C) 2011-2012 Free Software Foundation, Inc.
2
2
   This file is part of the GNU C Library.
3
3
   Contributed by Chris Metcalf <cmetcalf@tilera.com>, 2011.
4
4
 
107
107
 
108
108
 
109
109
/* Options set using PTRACE_SETOPTIONS.  */
110
 
enum __ptrace_setoptions {
 
110
enum __ptrace_setoptions
 
111
{
111
112
  PTRACE_O_TRACESYSGOOD = 0x00000001,
112
113
  PTRACE_O_TRACEFORK    = 0x00000002,
113
114
  PTRACE_O_TRACEVFORK   = 0x00000004,
115
116
  PTRACE_O_TRACEEXEC    = 0x00000010,
116
117
  PTRACE_O_TRACEVFORKDONE = 0x00000020,
117
118
  PTRACE_O_TRACEEXIT    = 0x00000040,
118
 
  PTRACE_O_MASK         = 0x0000007f
 
119
  PTRACE_O_TRACESECCOMP = 0x00000080,
 
120
  PTRACE_O_MASK         = 0x000000ff
119
121
};
120
122
 
121
123
/* Wait extended result codes for the above trace options.  */
122
 
enum __ptrace_eventcodes {
 
124
enum __ptrace_eventcodes
 
125
{
123
126
  PTRACE_EVENT_FORK     = 1,
124
127
  PTRACE_EVENT_VFORK    = 2,
125
128
  PTRACE_EVENT_CLONE    = 3,
126
129
  PTRACE_EVENT_EXEC     = 4,
127
130
  PTRACE_EVENT_VFORK_DONE = 5,
128
 
  PTRACE_EVENT_EXIT     = 6
 
131
  PTRACE_EVENT_EXIT     = 6,
 
132
  PTRACE_EVENT_SECCOMP  = 7
129
133
};
130
134
 
131
135
/* Perform process tracing functions.  REQUEST is one of the values