public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libc/4125] New: Missing ptrace defines from user space ptrace.h
@ 2007-03-02 22:33 rangelino at novell dot com
  2007-03-02 22:36 ` [Bug libc/4125] " rangelino at novell dot com
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: rangelino at novell dot com @ 2007-03-02 22:33 UTC (permalink / raw)
  To: glibc-bugs

The following defines are missing from user space /usr/include/sys/ptrace.h:

/* options set using PTRACE_SETOPTIONS */
#define PTRACE_O_TRACESYSGOOD  0x00000001
#define PTRACE_O_TRACEFORK     0x00000002
#define PTRACE_O_TRACEVFORK    0x00000004
#define PTRACE_O_TRACECLONE    0x00000008
#define PTRACE_O_TRACEEXEC     0x00000010
#define PTRACE_O_TRACEVFORKDONE        0x00000020
#define PTRACE_O_TRACEEXIT     0x00000040

#define PTRACE_O_MASK          0x0000007f

/* Wait extended result codes for the above trace options.  */
#define PTRACE_EVENT_FORK      1
#define PTRACE_EVENT_VFORK     2
#define PTRACE_EVENT_CLONE     3
#define PTRACE_EVENT_EXEC      4
#define PTRACE_EVENT_VFORK_DONE        5
#define PTRACE_EVENT_EXIT      6

-- 
           Summary: Missing ptrace defines from user space ptrace.h
           Product: glibc
           Version: unspecified
            Status: NEW
          Severity: normal
          Priority: P2
         Component: libc
        AssignedTo: drepper at redhat dot com
        ReportedBy: rangelino at novell dot com
                CC: glibc-bugs at sources dot redhat dot com


http://sourceware.org/bugzilla/show_bug.cgi?id=4125

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug libc/4125] Missing ptrace defines from user space ptrace.h
  2007-03-02 22:33 [Bug libc/4125] New: Missing ptrace defines from user space ptrace.h rangelino at novell dot com
@ 2007-03-02 22:36 ` rangelino at novell dot com
  2007-04-05 17:12 ` rangelino at novell dot com
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: rangelino at novell dot com @ 2007-03-02 22:36 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From rangelino at novell dot com  2007-03-02 22:36 -------
Created an attachment (id=1594)
 --> (http://sourceware.org/bugzilla/attachment.cgi?id=1594&action=view)
ptrace patch to include more user space ptrace options

The attached patch adds additional defines in user space.  This patch is
against development release 2.5.90...

-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=4125

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug libc/4125] Missing ptrace defines from user space ptrace.h
  2007-03-02 22:33 [Bug libc/4125] New: Missing ptrace defines from user space ptrace.h rangelino at novell dot com
  2007-03-02 22:36 ` [Bug libc/4125] " rangelino at novell dot com
@ 2007-04-05 17:12 ` rangelino at novell dot com
  2007-06-17 17:30 ` cvs-commit at gcc dot gnu dot org
  2007-06-17 17:34 ` aj at suse dot de
  3 siblings, 0 replies; 5+ messages in thread
From: rangelino at novell dot com @ 2007-04-05 17:12 UTC (permalink / raw)
  To: glibc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |WAITING


http://sourceware.org/bugzilla/show_bug.cgi?id=4125

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug libc/4125] Missing ptrace defines from user space ptrace.h
  2007-03-02 22:33 [Bug libc/4125] New: Missing ptrace defines from user space ptrace.h rangelino at novell dot com
  2007-03-02 22:36 ` [Bug libc/4125] " rangelino at novell dot com
  2007-04-05 17:12 ` rangelino at novell dot com
@ 2007-06-17 17:30 ` cvs-commit at gcc dot gnu dot org
  2007-06-17 17:34 ` aj at suse dot de
  3 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2007-06-17 17:30 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2007-06-17 17:29 -------
Subject: Bug 4125

CVSROOT:	/cvs/glibc
Module name:	libc
Changes by:	aj@sourceware.org	2007-06-17 17:29:48

Modified files:
	.              : ChangeLog 
	sysdeps/unix/sysv/linux/sys: ptrace.h 
	sysdeps/unix/sysv/linux/ia64/sys: ptrace.h 
	sysdeps/unix/sysv/linux/powerpc/sys: ptrace.h 
	sysdeps/unix/sysv/linux/s390/sys: ptrace.h 
	sysdeps/unix/sysv/linux/sparc/sys: ptrace.h 

Log message:
	[BZ #4125]
	* sysdeps/unix/sysv/linux/sys/ptrace.h
	(PTRACE_O_TRACESYSGOOD, PTRACE_O_TRACEFORK,
	PTRACE_O_TRACEVFORK, PTRACE_O_TRACECLONE, PTRACE_O_TRACEEXEC,
	PTRACE_O_TRACEVFORKDONE, PTRACE_O_TRACEEXIT, PTRACE_O_MASK,
	PTRACE_EVENT_FORK, PTRACE_EVENT_VFORK, PTRACE_EVENT_CLONE,
	PTRACE_EVENT_EXEC, PTRACE_EVENT_VFORK_DONE, PTRACE_EVENT_EXIT):
	Define.
	* sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
	* sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
	* sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
	* sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/libc/ChangeLog.diff?cvsroot=glibc&r1=1.10676&r2=1.10677
http://sourceware.org/cgi-bin/cvsweb.cgi/libc/sysdeps/unix/sysv/linux/sys/ptrace.h.diff?cvsroot=glibc&r1=1.15&r2=1.16
http://sourceware.org/cgi-bin/cvsweb.cgi/libc/sysdeps/unix/sysv/linux/ia64/sys/ptrace.h.diff?cvsroot=glibc&r1=1.4&r2=1.5
http://sourceware.org/cgi-bin/cvsweb.cgi/libc/sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h.diff?cvsroot=glibc&r1=1.3&r2=1.4
http://sourceware.org/cgi-bin/cvsweb.cgi/libc/sysdeps/unix/sysv/linux/s390/sys/ptrace.h.diff?cvsroot=glibc&r1=1.3&r2=1.4
http://sourceware.org/cgi-bin/cvsweb.cgi/libc/sysdeps/unix/sysv/linux/sparc/sys/ptrace.h.diff?cvsroot=glibc&r1=1.6&r2=1.7



-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=4125

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug libc/4125] Missing ptrace defines from user space ptrace.h
  2007-03-02 22:33 [Bug libc/4125] New: Missing ptrace defines from user space ptrace.h rangelino at novell dot com
                   ` (2 preceding siblings ...)
  2007-06-17 17:30 ` cvs-commit at gcc dot gnu dot org
@ 2007-06-17 17:34 ` aj at suse dot de
  3 siblings, 0 replies; 5+ messages in thread
From: aj at suse dot de @ 2007-06-17 17:34 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From aj at suse dot de  2007-06-17 17:33 -------
Fixed for glibc 2.7

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|                            |FIXED


http://sourceware.org/bugzilla/show_bug.cgi?id=4125

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2007-06-17 17:34 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-03-02 22:33 [Bug libc/4125] New: Missing ptrace defines from user space ptrace.h rangelino at novell dot com
2007-03-02 22:36 ` [Bug libc/4125] " rangelino at novell dot com
2007-04-05 17:12 ` rangelino at novell dot com
2007-06-17 17:30 ` cvs-commit at gcc dot gnu dot org
2007-06-17 17:34 ` aj at suse dot de

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).