1. e524a21 tsan: fix merge bug by Dmitry Vyukov · 11 years ago
  2. 21b3b1c tsan: fix windows crash (incorrect stack boundaries) by Dmitry Vyukov · 11 years ago
  3. c528867 tsan: fix windows mingw build by Dmitry Vyukov · 11 years ago
  4. 0b694fc [nolibc] Move all platforms to internal_getpid. by Peter Collingbourne · 11 years ago
  5. 6712833 Try to fix Windows build too by Peter Collingbourne · 11 years ago
  6. 9578a3e [nolibc] Change internal syscall API to remove reliance on libc's errno. by Peter Collingbourne · 11 years ago
  7. 736cf49 [sanitizer] Move GetStackTrace from ASan to sanitizer_common. by Sergey Matveev · 11 years ago
  8. 24323de [sanitizer] Move GetThreadStackAndTls from TSan to sanitizer_common. by Sergey Matveev · 11 years ago
  9. 2c96987 Add a GetTid() implementation for Windows by Timur Iskhodzhanov · 11 years ago
  10. 24e1372 [sanitizer] Replace more platform checks with SANITIZER_ constants. by Evgeniy Stepanov · 11 years ago
  11. 93af594 [Sanitizer] Add default constructor for BlockingMutex by Alexey Samsonov · 11 years ago
  12. a3ab192 [Sanitizer] fix compilation for Windows by Alexey Samsonov · 11 years ago
  13. 1ef94b1 [Sanitizer] Write a slightly better implementation of GetEnv() function on Windows by Alexey Samsonov · 11 years ago
  14. b114ed8 [sanitizer] Move GetTlsSize code from TSan to sanitizer_common. by Evgeniy Stepanov · 11 years ago
  15. ce70097 [Sanitizer] Implement BlockingMutex::CheckLocked() by Alexey Samsonov · 11 years ago
  16. f882247 [Sanitizer] use raw syscall instead of _exit() function on Linux by Alexey Samsonov · 12 years ago
  17. 0fa691b [Sanitizer] Make temporary filename depend on user ID by Alexey Samsonov · 12 years ago
  18. 2b10d39 [ASan] Switch Windows to allocator v2, also fixing some build errors by Timur Iskhodzhanov · 12 years ago
  19. cf533b6 asan/tsan: fix failing CHECK on windows by Dmitry Vyukov · 12 years ago
  20. 4c9317a [Sanitizer] extend internal libc with stat/fstat/lstat functions by Alexey Samsonov · 12 years ago
  21. 8ceeec4 asan/tsan: fix compilation errors/bugs on Windows where long is 32-bit even in 64-bit mode by Dmitry Vyukov · 12 years ago
  22. e85c83d [Sanitizer] use u32 instead of mode_t, which is defined in Darwin headers by Alexey Samsonov · 12 years ago
  23. ee7cc44 [Sanitizer] make internal_open have the same interface as libc version by Alexey Samsonov · 12 years ago
  24. 53833ea asan: fix windows build by Dmitry Vyukov · 12 years ago
  25. f4f51f2 asan/tsan: move blocking mutex from asan to sanitizer_common by Dmitry Vyukov · 12 years ago
  26. c5df5fb [Sanitizer] add missing header on Windows by Alexey Samsonov · 12 years ago
  27. 2bac661 [Sanitizer] implement internal_isatty on Windows by Alexey Samsonov · 12 years ago
  28. 8c58aa7 [asan] fix windows build by Kostya Serebryany · 12 years ago
  29. 9bfe78f [sanitizer] introduce MmapFixedOrDie and use it in SizeClassAllocator64 by Kostya Serebryany · 12 years ago
  30. 2574257 Add a libsanitizer API __sanitizer_sandbox_on_notify(void* reserved), which should be used by by Alexander Potapenko · 12 years ago
  31. f67ec2b [asan] get rid of some of the uses of kPageSize. The intent is to get rid of it completely to support platforms with multiple possible page sizes. by Kostya Serebryany · 12 years ago
  32. 93b4caf [Sanitizer] add sanity checks for communication with external symbolizer by Alexey Samsonov · 12 years ago
  33. e43542a [Sanitizer] try to fix Windows bot - include stdlib.h for abort/_exit functions by Alexey Samsonov · 12 years ago
  34. 33b2a94 tsan: windows: less includes, better diagnostics for failed VirtualAlloc(), implement sched_yield() by Dmitry Vyukov · 12 years ago
  35. 84d57b4 [Sanitizer] Add internal_isatty to sanitizer_libc and PrintsToTty to determine whether error reports are printed to terminal by Alexey Samsonov · 12 years ago
  36. f3457cb [Sanitizer] Use kStderrFd constant instead of hardcoded 2 by Alexey Samsonov · 12 years ago
  37. 35b6614 [Sanitizer] Remove unneeded returns after UNIMPLEMENTED macro by Alexey Samsonov · 12 years ago
  38. d7e5bb4 [Sanitizer] Hoist functions to get/set stack size and re-exec from memory-sanitizer branch to sanitizer_common by Alexey Samsonov · 12 years ago
  39. d1b8f58 [Sanitizer] implement readlink as syscall on Linux by Alexey Samsonov · 12 years ago
  40. 985aaaa [Sanitizer] One more try to fix Windows build by Alexey Samsonov · 12 years ago
  41. 6e893b6 [Sanitizer] move OS-dependent pieces of symbolizer to separate source files by Alexey Samsonov · 12 years ago
  42. a68633f [Sanitizer] Extend a symbolizer code. Implemented for Linux only. Use dl_iterate_phdr to get virtual addresses of mapped module sections. To symbolize an address from a module, map this module to memory and obtain pointers to debug info sections. Later these pointers can be passed to constructor of DWARF context-in-memory from LLVM DebugInfo lib. by Alexey Samsonov · 12 years ago
  43. 6902135 tsan/asan: third try on msvc atomics by Dmitry Vyukov · 12 years ago
  44. b6eb56f tsan/asan: first try on msvc atomics by Dmitry Vyukov · 12 years ago
  45. a4e4744 [asan] get rid of libc's sscanf as it causes infinite recursion on Fedora. by Kostya Serebryany · 12 years ago
  46. 6985085 [tsan] a bit more lint and Makefile changes to run tests from sanitizer_common by Kostya Serebryany · 12 years ago
  47. 0969bcf [Sanitizer] move different wrappers from TSan to common sanitizer runtime by Alexey Samsonov · 12 years ago
  48. dd3a911 [Sanitizer] move ShadowRangeIsAvailable and several defines to common runtime by Alexey Samsonov · 12 years ago
  49. 4c49666 [Sanitizer] move atomic ops, min/max and sort to commnon runtime by Alexey Samsonov · 12 years ago
  50. fa3daaf [Sanitizer] move more portability wrappers to common runtime: sleep, _exit, abort, atexit, pthread_self by Alexey Samsonov · 12 years ago
  51. be7420c [Sanitizer] move DumpProcessMap and DisableCoreDumper to common runtime by Alexey Samsonov · 12 years ago
  52. f607fc1 [Sanitizer] move rest of mmap routines to common sanitizer runtime by Alexey Samsonov · 12 years ago
  53. 3dbeabb [Sanitizer] move portable GetEnv to common sanitizer runtime by Alexey Samsonov · 12 years ago
  54. ed996f7 [Sanitizer] Fix mac build. by Alexey Samsonov · 12 years ago
  55. e5931fd [Sanitizer] factor out GetThreadStackTopAndBottom from ASan runtime to common. by Alexey Samsonov · 12 years ago
  56. a25b346 [Sanitizer] Switch to common mmap/munmap routines in ASan run-time. by Alexey Samsonov · 12 years ago
  57. 8c53e54 [Sanitizer] Make UNIMPLEMENTED macro common. by Alexey Samsonov · 12 years ago
  58. 9929ffd [ASan] fix win build - add missing header by Alexey Samsonov · 12 years ago
  59. 230c3be [Sanitizer] Move more functions/constants to sanitizer_common. by Alexey Samsonov · 12 years ago
  60. 8e820fc [Sanitizer] move internal_filesize and internal_dup2 from TSan to sanitizer_common. by Alexey Samsonov · 12 years ago
  61. 94b5036 [Sanitizer] rename sanitizer_defs.h to sanitizer_internal_defs.h by Alexey Samsonov · 12 years ago
  62. 1f11d31 [Sanitizer] add sanitizer_posix.cc. Move more various functions into sanitizer_libc: sscanf, munmap, memchr by Alexey Samsonov · 12 years ago
  63. a56aefd [Sanitizer] add internal_{close,read,write} functions to sanitizer_libc by Alexey Samsonov · 12 years ago
  64. 7f9c5a2 [TSan] use __sanitizer::internal_open in TSan run-time by Alexey Samsonov · 12 years ago
  65. c5d4651 [Sanitizer] Add sanitizer_win.cc for windows-specific implementations of libc functions. Add internal_open. by Alexey Samsonov · 12 years ago