tsan: return the old fake numbers from malloc stats (some code already depends on them)

llvm-svn: 173348
This commit is contained in:
Dmitry Vyukov 2013-01-24 14:07:19 +00:00
parent 971b0cd26f
commit 4e3b9802bd
1 changed files with 2 additions and 2 deletions

View File

@ -193,11 +193,11 @@ uptr __tsan_get_heap_size() {
}
uptr __tsan_get_free_bytes() {
return 0;
return 1;
}
uptr __tsan_get_unmapped_bytes() {
return 0;
return 1;
}
uptr __tsan_get_estimated_allocated_size(uptr size) {