1. 5cf2c46 tsan/asan: support pthread_setname_np to set thread names by Dmitry Vyukov · 11 years ago
  2. 58dc8be tsan: start the background thread with signals blocked, otherwise it can steal users signals by Dmitry Vyukov · 11 years ago
  3. e236dbb [sanitizer] Intercept pthread_attr_get*. by Evgeniy Stepanov · 11 years ago
  4. fc81346 [Sanitizer] Move pthread_cond_signal and pthread_cond_broadcast to common interceptors by Alexey Samsonov · 11 years ago
  5. 5e2d377 Make some pthread_mutex_* and pthread_cond_* interceptors common. by Alexey Samsonov · 11 years ago
  6. 06cbed8 tsan: use verbosity flag in sanitizer_common code directly by Dmitry Vyukov · 11 years ago
  7. 3dbbd85 tsan: resolve symlinks for called_from_lib suppressions by Dmitry Vyukov · 11 years ago
  8. 67f5544 tsan: catch more races on file descriptors by Dmitry Vyukov · 11 years ago
  9. 29cec48 tsan: fix epoll_ctl interceptor by Dmitry Vyukov · 11 years ago
  10. 6eb836f [sanitizer] Move the PTHREAD_DESTRUCTOR_ITERATIONS constant to sanitizer_linux.h. by Sergey Matveev · 11 years ago
  11. 9fe1d5a tsan: fix a bug in pthread_once when called from an ignored library by Dmitry Vyukov · 11 years ago
  12. 14dd980 asan/msan/tsan: move _exit interceptor to common interceptors by Dmitry Vyukov · 11 years ago
  13. c78140f tsan: intercept _exit so that we can override exit status by Dmitry Vyukov · 11 years ago
  14. 4af0f21 tsan: ignore interceptors coming from specified libraries by Dmitry Vyukov · 11 years ago
  15. 9a949a8 [sanitizer] A bunch of libc interceptors. by Evgeniy Stepanov · 11 years ago
  16. 39fa68e tsan: ignore malloc/free/strdup when called from libjvm by Dmitry Vyukov · 11 years ago
  17. d188653 tsan: ignore all interceptors coming directly from JVM by Dmitry Vyukov · 11 years ago
  18. 6c21e11 tsan: intercept fork syscall by Dmitry Vyukov · 11 years ago
  19. b47d41f tsan: intercept close syscall by Dmitry Vyukov · 11 years ago
  20. eb0be61 tsan: handle memory read/write in syscalls by Dmitry Vyukov · 11 years ago
  21. 9880219 tsan: do not crash when user intercepts fopen() by Dmitry Vyukov · 11 years ago
  22. fae2bff tsan: fix linking of tsan runtime into dynamic libraries by Dmitry Vyukov · 11 years ago
  23. c09250f [TSan] Fix -Wempty-body warning by Alexey Samsonov · 11 years ago
  24. 9d4956e tsan: prevent the following false positive due to __cxa_atexit by Dmitry Vyukov · 11 years ago
  25. 652f78a tsan: refactor internal IgnoreCtl interface by Dmitry Vyukov · 11 years ago
  26. a09507c Delete unused variables. by Eli Friedman · 11 years ago
  27. bd33d3a [tsan] make calloc crash instead of returning 0 on overflow (controlled by the allocator_may_return_null flag) by Kostya Serebryany · 11 years ago
  28. 8cde5cb tsan: catch races on condition variables by Dmitry Vyukov · 11 years ago
  29. f061554 tsan: properly intercept pthread_cond functions by Dmitry Vyukov · 11 years ago
  30. cf878fd tsan: intercept getaddrinfo by Dmitry Vyukov · 11 years ago
  31. f109267 [*San/RTL] Fix minor breakage by Timur Iskhodzhanov · 11 years ago
  32. 3c80c6c Define SANITIZER_INTERFACE_ATTRIBUTE on Windows and fix all the places where SANITIZER_INTERFACE_ATTRIBUTE or SANITIZER_ATTRIBUTE_WEAK are used by Timur Iskhodzhanov · 11 years ago
  33. e18e3f0 [sanitizer] Intercept poll/ppoll. by Evgeniy Stepanov · 11 years ago
  34. 158ca52 tsan: treat SIGSYS as synchronous signal by Dmitry Vyukov · 11 years ago
  35. 48016bc tsan: disable one more interceptor that causes recursion by Dmitry Vyukov · 11 years ago
  36. 67505a8 [Sanitizer] move strcpy and strncpy to common interceptors by Alexey Samsonov · 11 years ago
  37. fbeab51 tsan: support sigsuspend() call by Dmitry Vyukov · 11 years ago
  38. 3fa122e [sanitizer] Support GLOB_ALTDIRFUNC in glob interceptor. by Evgeniy Stepanov · 11 years ago
  39. c8c312a Hide mlock/munlock info message under verbosity flag. by Alexey Samsonov · 11 years ago
  40. 1dcabd1 tsan: add missing __attribute__((visibility("default"))) to interface functions by Dmitry Vyukov · 11 years ago
  41. b916e6a [sanitizer] Intercept readv, preadv, writev, pwritev. by Evgeniy Stepanov · 11 years ago
  42. e7718bc tsan: consistently use return pc as top frame pc by Dmitry Vyukov · 11 years ago
  43. 917f62e tsan: disable getaddrinfo() interceptor for tsan (causes recursion) by Dmitry Vyukov · 11 years ago
  44. 9666d89 [sanitizer] Move TSan and MSan recvmsg interceptors to common. by Evgeniy Stepanov · 11 years ago
  45. 9d1525e [sanitizer] Share TSan accept & accept4 interceptors with other sanitizers. by Evgeniy Stepanov · 11 years ago
  46. 0b694fc [nolibc] Move all platforms to internal_getpid. by Peter Collingbourne · 11 years ago
  47. edd2821 tsan: disable getpwuid_r() and glob64() interceptors under tsan, because they cause interceptor recursion if user intercepts fopen() by Dmitry Vyukov · 11 years ago
  48. 881b677 [sanitizer] Add syscall handlers to ASan and TSan runtimes. by Evgeniy Stepanov · 11 years ago
  49. b157c67 Remove all 'static' before ALWAYS_INLINE by Timur Iskhodzhanov · 11 years ago
  50. 8b30c25 tsan: intercept setjmp/longjmp by Dmitry Vyukov · 11 years ago
  51. 7423c78 tsan: return 0 on malloc() failure instead of crashing by Dmitry Vyukov · 11 years ago
  52. 5043f05 tsan: intercept abort() to fflush() libc streams by Dmitry Vyukov · 11 years ago
  53. f465bde tsan: remove bogus CHECK by Dmitry Vyukov · 11 years ago
  54. 4219ea3 tsan: add a comment about magic numbers by Dmitry Vyukov · 11 years ago
  55. 236a098 tsan: correct sizes of signal-related data structures by Dmitry Vyukov · 11 years ago
  56. 0ebfc6f tsan: call fflush(0) on exit again by Dmitry Vyukov · 11 years ago
  57. 8e1c769 tsan: instruct malloc() to consume less memory by Dmitry Vyukov · 11 years ago
  58. b9bf700 [sanitizer] Don't adjust the size of the user-allocated stack. by Evgeniy Stepanov · 11 years ago
  59. 74172de tsan: touch less shadow memory during operations on big memory ranges by Dmitry Vyukov · 11 years ago
  60. 7ac33ac tsan: mark shadow for thread stack as "don't need" when thread exits by Dmitry Vyukov · 11 years ago
  61. ac1f5ca tsan: madvise(DONTNEED) shadow memory on munmap() by Dmitry Vyukov · 11 years ago
  62. 2bbd8be [TSan] Switch TSan runtime to use ThreadRegistry class from sanitizer_common by Alexey Samsonov · 11 years ago
  63. 47a0f6e [TSan] Add missing header inclusion by Alexey Samsonov · 11 years ago
  64. f110e35 [TSan] Use __sanitizer_pthread_attr_t in TSan by Alexey Samsonov · 11 years ago
  65. 8a6b5e5 [TSan] Add interceptor for malloc_usable_size() by Alexey Samsonov · 12 years ago
  66. 03f2248 tsan: intercept libc __res_iclose by Dmitry Vyukov · 12 years ago
  67. 52c70e5 tsan: intercept bind/listen by Dmitry Vyukov · 12 years ago
  68. c05cbca tsan: catch races on fd in more cases by Dmitry Vyukov · 12 years ago
  69. 334553e tsan: detect races between plain and atomic memory accesses by Dmitry Vyukov · 12 years ago
  70. ba5e996 [Sanitizer] update style checker script and fix namespace style warnings by Alexey Samsonov · 12 years ago
  71. 31c05ea tsan: support for inprocess symbolizer by Dmitry Vyukov · 12 years ago
  72. 61ba1b5 tsan: add interceptor stubs for stat family of functions by Dmitry Vyukov · 12 years ago
  73. 65199f1 [sanitizer] fix calloc overflow in asan/tsan/msan by Kostya Serebryany · 12 years ago
  74. 82a9080 [sanitizer] lint by Evgeniy Stepanov · 12 years ago
  75. 4f32c0b [sanitizer] Rename 2 files *.h->*.inc as appropriate. by Evgeniy Stepanov · 12 years ago
  76. 996c4f2 [sanitizer] Common *scanf interceptors. by Evgeniy Stepanov · 12 years ago
  77. c20b321 [sanitizer] reapply r172719, r172721-172723, r172725, and also fix the warning on Mac. by Kostya Serebryany · 12 years ago
  78. 29b37ea Revert r172719, r172721-172723, and r172725. by Jakob Stoklund Olesen · 12 years ago
  79. 153ba3f [sanitizer] move write/pwrite/pwrite64 interceptors to common by Kostya Serebryany · 12 years ago
  80. 0223e7d [tsan] move prctl interceptor from asan to common_interceptors thus enabling it for tsan too by Kostya Serebryany · 12 years ago
  81. 7be1cc8 [tsan] add write_range/read_range hooks to common interceptors called from tsan (to find races on read/pread/etc) by Kostya Serebryany · 12 years ago
  82. c803319 [sanitizer] a bit more unification for interceptors (merge read/pread/pread64 in asan and tsan) by Kostya Serebryany · 12 years ago
  83. fb917e9 tsan: describe stack and TLS addresses by Dmitry Vyukov · 12 years ago
  84. f5d4273 tsan: add check for invalid fd by Dmitry Vyukov · 12 years ago
  85. a597258 tsan: detect races on fd passed to epoll_ctl by Dmitry Vyukov · 12 years ago
  86. f17b382 tsan: fix crash when user defines own fopen/fileno by Dmitry Vyukov · 12 years ago
  87. bb30741 tsan: fix crash when user defines own fopen/fileno by Dmitry Vyukov · 12 years ago
  88. b843c1f tsan: more defensive file descriptor verification by Dmitry Vyukov · 12 years ago
  89. b75c67b tsan: fix -Wgnu warnings by Dmitry Vyukov · 12 years ago
  90. 4554b7a tsan: intercept fork() to prevent false race reports on fd's by Dmitry Vyukov · 12 years ago
  91. 45d4324 tsan: add signalfd() and inotify_init() interceptors by Dmitry Vyukov · 12 years ago
  92. d2f08ff [Sanitizer] Expose StackTrace::GetPreviousInstructionPc() to get PC of call instruction from return address by Alexey Samsonov · 12 years ago
  93. ed513f6 tsan: synchronize connect->accept calls by Dmitry Vyukov · 12 years ago
  94. 983518e tsan: add socketpair() interceptor and test by Dmitry Vyukov · 12 years ago
  95. 703e4e4 tsan: explain why pthread_cond_init() interceptor is commented out by Dmitry Vyukov · 12 years ago
  96. c78839f tsan: more precise handling of IO synchronization by Dmitry Vyukov · 12 years ago
  97. 8530e2b [asan] add sanitizer_common/sanitizer_common_interceptors.h with pread/pread64/read interceptors. Use it in asan. Add asan tests for pread/etc. Add FIXME to tsan/msan interceptors by Kostya Serebryany · 12 years ago
  98. 063e4a5 Unbreak the C++98 build. by David Blaikie · 12 years ago
  99. 68230a1 tsan: even more fd interceptors + fixes by Dmitry Vyukov · 12 years ago
  100. ba3ae35 tsan: more fd interceptors + bug fixes + tests by Dmitry Vyukov · 12 years ago