1. 5304457 Various build system clean-ups and simplifications: by njn · 16 years ago
  2. 8b140de In the core, include malloc_usable_size() as one of the functions that must by njn · 16 years ago
  3. 75a374b Remove unused filter scripts from DRD. by njn · 16 years ago
  4. 86562bd - Updated copyright statements. - Improved consistency of source file headers. by bart · 16 years ago
  5. 55df6e7 Just as for the regression tests of other Valgrind tools, do not explicitly state that these are licensed under the GPLv2 license but leave this implicit. by bart · 16 years ago
  6. 870f170 Stack traces for Memcheck's syscall param errors are terribly unreliable, so by njn · 16 years ago
  7. 39934d6 drd_bitmap_test compiles again. by bart · 16 years ago
  8. 99edb29 Wrapped DRD_() macro around yet even more function names. by bart · 16 years ago
  9. 246fbf2 Wrapped DRD_() macro around even more function and variable names. by bart · 16 years ago
  10. dc1ef03 Wrapped DRD_() macro around even more function names. by bart · 16 years ago
  11. 764dea2 Changed a global variable into a local variable. by bart · 16 years ago
  12. 62a784c Wrapped DRD_() macro around thread-related function names. by bart · 16 years ago
  13. 324a23b Wrapped DRD_() macro around global and static variables in drd_thread.[ch]. by bart · 16 years ago
  14. 195e41f Wrapped DRD_() macro around all client object function names. by bart · 16 years ago
  15. a8cf765 Wrapped DRD_() macro around all barrier-related function names. by bart · 16 years ago
  16. a764b37 Restored the previous method for passing arguments from the creator thread to the created thread, since the new approach made some regression tests fail. It is not yet clear to me why. by bart · 16 years ago
  17. 439c55f Added more comments / rearranged function order. by bart · 16 years ago
  18. 03ffb2e Changed the order of the function definitions. by bart · 16 years ago
  19. 48529bc Cleaned up the source code of the atomic_var regression test, without changing the actual test. by bart · 16 years ago
  20. 62ada3f Wrapped DRD_() macro around all segment function names. by bart · 16 years ago
  21. 41b226c Wrapped DRD_() macro around all vector clock function names. by bart · 16 years ago
  22. 1335ecc Introduced more DRD_ prefixes. by bart · 16 years ago
  23. 09dc13f - Moved several functions and variables from one source file to another. by bart · 16 years ago
  24. 82a0c5d Added a missing #include directive. by bart · 16 years ago
  25. 5c3da01 Relaxed an assert statement: a thread canceled by pthread_cancel() can really exit with synchr_nesting > 0. by bart · 16 years ago
  26. 3dbdc86 Added DRD_(spinlock_init_or_unlock)(). by bart · 16 years ago
  27. 227c659 - Performance improvement: eliminated busy waiting from thread creation. by bart · 16 years ago
  28. 292c1e2 Renamed vg_thread_wrapper() into DRD_(thread_wrapper)(). by bart · 16 years ago
  29. 2356798 Updated copyright statement. by bart · 16 years ago
  30. 8b74ab9 Added file to repository. by bart · 16 years ago
  31. e66ffee Filter out everything after "(below main)" in a line. This will help with by njn · 16 years ago
  32. e615466 Merge part of r9129 (factor out duplicated Z-encodings of names) from the by njn · 16 years ago
  33. c61a616 Switched from the Apache License to a BSD-style license in order to reduce the number of licences that applies to the source code of Valgrind. by bart · 16 years ago
  34. 7f42a3c Do not only recognize .plt and .plt.got sections inside the mapped address range, but also outside the mapped address range (necessary for ppc). by bart · 16 years ago
  35. 7fd6d38 Rename all the arch/OS/platform-related variables in configure.in to make it by njn · 16 years ago
  36. a7d4ca3 A couple more changes to fix the conditional building of DRD tests. by njn · 16 years ago
  37. a2aa68e Added yet another output variant. by bart · 16 years ago
  38. 5639ce1 Added yet another output variant. by bart · 16 years ago
  39. 8cdc628 Elaborated prereq clauses. by bart · 16 years ago
  40. 5a8c67f Made compilation of multiple tests conditional. by bart · 16 years ago
  41. 3826d58 Only call pthread_rwlock_timedwrlock() or pthread_rwlock_timedrdlock() if supported. by bart · 16 years ago
  42. 05a7d46 Removed superfluous dependency. by bart · 16 years ago
  43. 070d1a2 Make sure that sigalrm.c compiles correctly on systems that do not have the header file <asm/unistd.h>. by bart · 16 years ago
  44. ed20050 Obtain current time through time() instead of through clock_gettime(CLOCK_REALTIME), such that this test compiles on systems that do not support CLOCK_REALTIME. by bart · 16 years ago
  45. c4431bf Introduce a new type, PtrdiffT. Replace lots of uses of OffT (all those by njn · 16 years ago
  46. 7f8cd30 Added an additional expected output file. by bart · 16 years ago
  47. 28aa0ce Runs now fine on systems for which PTHREAD_STACK_MIN > 32768. by bart · 16 years ago
  48. d8eb77d Made DRD regression pass when the glibc-debuginfo package is installed. by bart · 16 years ago
  49. 4ac853b Polished manual. by bart · 16 years ago
  50. 1dd7eb0 Updated to do list. by bart · 16 years ago
  51. 8e1033f Moved two define's, such that the ABIWARNING appears immediately before the enum declaration it applies to. by bart · 16 years ago
  52. dc35ec0 Made sure that the file bar_trivial.stdout.exp gets included in the distribution tarball. by bart · 16 years ago
  53. c8914e9 Renamed a variable and removed two statements that were commented out. by bart · 16 years ago
  54. 8244481 Un-break 'make dist'. by sewardj · 16 years ago
  55. 59347ff Comment out unused code so as to get a warning free build. by sewardj · 16 years ago
  56. e8cdb36 Updated after merge of Helgrind from YARD branch to trunk. by bart · 16 years ago
  57. e30177e Added prereq clause. by bart · 16 years ago
  58. 51db72d circular_buffer test now passes on systems with and without built-in support for atomic operations. by bart · 16 years ago
  59. 94866cc Fixed bug in vector clock updating for semaphores with non-zero initial value. by bart · 16 years ago
  60. 03225a8 Added command-line option -n, which allows to disable locking. by bart · 16 years ago
  61. d94169a Replaced regular increment by atomic increment. by bart · 16 years ago
  62. d22e8b2 Made config.h include path consistent with the other regression tests. by bart · 16 years ago
  63. ba1686b Finished renaming of boost_threads into boost_thread. by bart · 16 years ago
  64. 6fd7d74 Added another regression test. by bart · 16 years ago
  65. 3e017fa Fixed semaphore vector clock updating / simplified semaphore tracing. by bart · 16 years ago
  66. c57312c Fixed grammar / split a paragraph in two. by bart · 16 years ago
  67. 76ca62c Added a paragraph about the Boost.Thread library. by bart · 16 years ago
  68. afb42b7 Fixed regression test tc20_verifywrap2, which was broken through r8829. by bart · 16 years ago
  69. 62b4c57 Fix some format string mismatch warnings, associated with r8825. by sewardj · 16 years ago
  70. da9436b Added more semaphore tracing info. by bart · 16 years ago
  71. c98279e Simplified test program. by bart · 16 years ago
  72. 2d5d529 Reran SPLASH2 benchmark and updated results. by bart · 16 years ago
  73. a5bf231 Updated notes section. by bart · 16 years ago
  74. de57c49 Added prereq clause. by bart · 16 years ago
  75. c4a9e0f Added bar_bad and bar_trivial to the regression tests. by bart · 16 years ago
  76. 809427d Updated expected output after spelling fix in drd_barrier.c. by bart · 16 years ago
  77. c41688d Renamed boost_threads* into boost_thread*. by bart · 16 years ago
  78. fcff0b9 Print an error message instead of asserting when the count argument of pthread_barrier_init() is zero. Fixed a spelling error in an error message. by bart · 16 years ago
  79. 61e34a1 Added regression test for Boost.Threads. by bart · 16 years ago
  80. b4d8713 Update expected outputs following a (trivial) change in the source of by sewardj · 16 years ago
  81. e8900ff Replaced test for FILE::_lock by a more direct test. by bart · 16 years ago
  82. 88f3a89 Removed #define _IO_MTSAFE_IO again. by bart · 16 years ago
  83. 3a979cb Removed inclusion of <bits/libc-lock.h>. by bart · 16 years ago
  84. b19a5b0 Make regression test output independent of the presence of glibc debug information. by bart · 16 years ago
  85. 280990e Suppress race reports triggered by glibc's _IO_flockfile(FILE*) on stdout and stderr. by bart · 16 years ago
  86. 211b169 Increased gcc version to 4.3.2. by bart · 16 years ago
  87. 66ba8c0 Added paragraph "Using the POSIX Threads API Effectively." by bart · 16 years ago
  88. bbd3dcf Added omp_printf regression test. by bart · 16 years ago
  89. 8fe15da Added command-line option -h. by bart · 16 years ago
  90. 3eadaa0 Only call pthread_condattr_setclock() if it's available in libpthread. by bart · 16 years ago
  91. e64f11d Added a regression test called monitor_example. by bart · 16 years ago
  92. 2bc9c10 Added intercept for pthread_cancel(). by bart · 16 years ago
  93. 0f099cd Added client requests related to pthread_cancel(). by bart · 16 years ago
  94. 42087cc Added support for pthread_cancel() handling. by bart · 16 years ago
  95. 9b2974a Added more comments. by bart · 16 years ago
  96. af0691b Added thread_pre_cancel(). by bart · 16 years ago
  97. 032424f Added the pth_cancel_locked test. by bart · 16 years ago
  98. 143eec7 Renamed __sync_add_and_fetch() into sync_add_and_fetch(). by bart · 16 years ago
  99. e95d94f Fix longstanding bug in dual-arch support, which originated in by sewardj · 16 years ago
  100. 9c606bd by sewardj · 16 years ago