Prepare for 4.6 release
* NEWS: Update for 4.6 release. * configure.ac: Version 4.6. * debian/changelog: 4.6-1. * strace.spec: 4.6-1.
This commit is contained in:
parent
9004e12a91
commit
50e69cbe74
51
NEWS
51
NEWS
@ -1,3 +1,54 @@
|
||||
Noteworthy changes in release 4.6
|
||||
=================================
|
||||
|
||||
* Changes in behavior
|
||||
* Print diagnostic information about changes in personality mode to
|
||||
standard error instead of standard output.
|
||||
|
||||
* Improvements
|
||||
* Implemented a new method of following clone, fork, and vfork
|
||||
syscalls using the Linux kernel's explicit facilities for tracing
|
||||
creation of threads and child processes.
|
||||
* Implemented CLONE_PARENT and CLONE_UNTRACED flags handling.
|
||||
* Implemented decoding of TLS syscalls on m68k.
|
||||
* Implemented biarch support on powerpc64.
|
||||
* Implemented biarch support for getrlimit() and setrlimit().
|
||||
* Implemented decoding of struct ucred in getsockopt SO_PEERCRED.
|
||||
* Implemented SOL_SCTP socket options decoding.
|
||||
* Added HDIO_* ioctl names.
|
||||
(Addresses Debian bug #450953).
|
||||
* Added LOOP_* ioctl names.
|
||||
* Updated lists of CLOCK_*, CLONE_*, MS_*, and SOL_* constants
|
||||
to match Linux 2.6.37.
|
||||
* Updated the list of IPPROTO_* constants to match netinet/in.h.
|
||||
* Implemented decoding of HDIO_* and BLK* ioctls.
|
||||
* Added MicroBlaze architecture support.
|
||||
* Added new syscall entries to match Linux 2.6.37.
|
||||
* Regenerated list of ioctl names from Linux 2.6.37.
|
||||
* Enhanced signal notification decoding.
|
||||
* Documented -C and -D options.
|
||||
|
||||
* Bug fixes
|
||||
* Fixed fetching syscall arguments on m68k.
|
||||
* Fixed an error when judging whether a process has children.
|
||||
* Fixed get/set_robust_list syscall numbers for powerpc.
|
||||
* Fixed a corner case in printing clone flags.
|
||||
* Fixed cross-compiling issues.
|
||||
* Fixed build issues on powerpc64, SH and SPARC.
|
||||
* Fixed syscall flags of fstatat*, mmap, mmap2, fadvise64*, swapoff,
|
||||
fgetxattr, flistxattr, fremovexattr, epoll_create, fallocate,
|
||||
fanotify_init, and fanotify_mark syscalls.
|
||||
* Fixed decoding of get[ug]id, gete[ug]id and setfs[ug]id return values.
|
||||
* Fixed biarch support in IO dumping.
|
||||
* Fixed raw exit_group decoding.
|
||||
* Fixed decoding of file descriptors on 64-bit architectures.
|
||||
* Fixed a corner case in waitpid handling.
|
||||
(Addresses Red Hat bug #663547).
|
||||
* Fixed stat64 decoding on mips
|
||||
(Addresses Debian bug #599028).
|
||||
* Fixed misleading italics in the manual page.
|
||||
(Addresses Debian bug #589323).
|
||||
|
||||
Noteworthy changes in release 4.5.20
|
||||
====================================
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
dnl Process this file with autoconf to create configure. Use autoreconf.
|
||||
AC_PREREQ(2.57)
|
||||
AC_INIT([strace],[4.5.20])
|
||||
AC_INIT([strace],[4.6])
|
||||
AC_CONFIG_SRCDIR([strace.c])
|
||||
AC_CONFIG_AUX_DIR([.])
|
||||
AM_CONFIG_HEADER([config.h])
|
||||
|
10
debian/changelog
vendored
10
debian/changelog
vendored
@ -1,3 +1,13 @@
|
||||
strace (4.6-1) unstable; urgency=low
|
||||
|
||||
[ Dmitry V. Levin ]
|
||||
* New upstream version.
|
||||
+ Added HDIO_* ioctl names, closes: #450953
|
||||
+ Fixed stat64 decoding on mips, closes: #599028
|
||||
+ Fixed misleading italics in the manual page, closes: #589323
|
||||
|
||||
-- Dmitry V. Levin <ldv@altlinux.org> Mon, 14 Mar 2011 15:16:17 +0000
|
||||
|
||||
strace (4.5.20-2) unstable; urgency=low
|
||||
|
||||
* Add missing sparc syscall defines to fix FTBFS on sparc.
|
||||
|
@ -1,7 +1,7 @@
|
||||
Summary: Tracks and displays system calls associated with a running process
|
||||
Name: strace
|
||||
Version: 4.5.20
|
||||
Release: 2%{?dist}
|
||||
Version: 4.6
|
||||
Release: 1%{?dist}
|
||||
License: BSD
|
||||
Group: Development/Debuggers
|
||||
URL: http://sourceforge.net/projects/strace/
|
||||
@ -85,6 +85,10 @@ rm -rf %{buildroot}
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Mon Mar 14 2011 Dmitry V. Levin <ldv@altlinux.org> - 4.6-1
|
||||
- New upstream release.
|
||||
+ fixed a corner case in waitpid handling (#663547).
|
||||
|
||||
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.5.20-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user