blob: 26e3e27b503c46c1ce5a0a7eb87365f6d781222e [file] [log] [blame]
sewardj90238792003-05-05 00:23:42 +00001
sewardj37918822003-05-05 01:05:09 +00002Version 1.9.6 (7 May 2003 or thereabouts)
3~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4
5Major changes in 1.9.6:
6
7- Improved threading support for glibc >= 2.3.2 (SuSE 8.2,
8 RedHat 9, to name but two ...) It turned out that 1.9.5
9 had problems with threading support on glibc >= 2.3.2,
10 usually manifested by threaded programs deadlocking in system calls,
11 or running unbelievably slowly. Hopefully these are fixed now. 1.9.6
12 is the first valgrind which gives reasonable support for
13 glibc-2.3.2. Also fixed a 2.3.2 problem with pthread_atfork().
14
15- Majorly expanded FAQ.txt. We've added workarounds for all
16 common problems for which a workaround is known.
17
18Minor changes in 1.9.6:
19
20- Fix identification of the main thread's stack. Incorrect
21 identification of it was causing some on-stack addresses to not get
22 identified as such. This only affected the usefulness of some error
23 messages; the correctness of the checks made is unchanged.
24
25- Support for kernels >= 2.5.68.
26
27- Dummy implementations of __libc_current_sigrtmin,
28 __libc_current_sigrtmax and __libc_allocate_rtsig, hopefully
29 good enough to keep alive programs which previously died for lack of
30 them.
31
32- Fix bug in the VALGRIND_DISCARD_TRANSLATIONS client request.
33
34- Debug info reading: read symbols from both "symtab" and "dynsym"
35 sections, rather than merely from the one that comes last in the
36 file.
37
38- New syscall support: prctl(), creat(), lookup_dcookie().
39
40- When checking calls to accept(), recvfrom(), getsocketopt(),
41 don't complain if buffer values are NULL.
42
43- Try and avoid assertion failures in
44 mash_LD_PRELOAD_and_LD_LIBRARY_PATH.
45
46- Minor bug fixes in cg_annotate.
47
48
49
sewardj90238792003-05-05 00:23:42 +000050Version 1.9.5 (7 April 2003)
51~~~~~~~~~~~~~~~~~~~~~~~~~~~~
52
53It occurs to me that it would be helpful for valgrind users to record
54in the source distribution the changes in each release. So I now
55attempt to mend my errant ways :-) Changes in this and future releases
56will be documented in the NEWS file in the source distribution.
57
58Major changes in 1.9.5:
59
60- (Critical bug fix): Fix a bug in the FPU simulation. This was
61 causing some floating point conditional tests not to work right.
62 Several people reported this. If you had floating point code which
63 didn't work right on 1.9.1 to 1.9.4, it's worth trying 1.9.5.
64
65- Partial support for Red Hat 9. RH9 uses the new Native Posix
66 Threads Library (NPTL), instead of the older LinuxThreads.
67 This potentially causes problems with V which will take some
68 time to correct. In the meantime we have partially worked around
69 this, and so 1.9.5 works on RH9. Threaded programs still work,
70 but they may deadlock, because some system calls (accept, read,
71 write, etc) which should be nonblocking, in fact do block. This
72 is a known bug which we are looking into.
73
74 If you can, your best bet (unfortunately) is to avoid using
75 1.9.5 on a Red Hat 9 system, or on any NPTL-based distribution.
76 If your glibc is 2.3.1 or earlier, you're almost certainly OK.
77
78Minor changes in 1.9.5:
79
80- Added some #errors to valgrind.h to ensure people don't include
81 it accidentally in their sources. This is a change from 1.0.X
82 which was never properly documented. The right thing to include
83 is now memcheck.h. Some people reported problems and strange
84 behaviour when (incorrectly) including valgrind.h in code with
85 1.9.1 -- 1.9.4. This is no longer possible.
86
87- Add some __extension__ bits and pieces so that gcc configured
88 for valgrind-checking compiles even with -Werror. If you
89 don't understand this, ignore it. Of interest to gcc developers
90 only.
91
92- Removed a pointless check which caused problems interworking
93 with Clearcase. V would complain about shared objects whose
94 names did not end ".so", and refuse to run. This is now fixed.
95 In fact it was fixed in 1.9.4 but not documented.
96
97- Fixed a bug causing an assertion failure of "waiters == 1"
98 somewhere in vg_scheduler.c, when running large threaded apps,
99 notably MySQL.
100
101- Add support for the munlock system call (124).
102
103Some comments about future releases:
104
1051.9.5 is, we hope, the most stable Valgrind so far. It pretty much
106supersedes the 1.0.X branch. If you are a valgrind packager, please
107consider making 1.9.5 available to your users. You can regard the
1081.0.X branch as obsolete: 1.9.5 is stable and vastly superior. There
109are no plans at all for further releases of the 1.0.X branch.
110
111If you want a leading-edge valgrind, consider building the cvs head
112(from SourceForge), or getting a snapshot of it. Current cool stuff
113going in includes MMX support (done); SSE/SSE2 support (in progress),
114a significant (10-20%) performance improvement (done), and the usual
115large collection of minor changes. Hopefully we will be able to
116improve our NPTL support, but no promises.
117