forked from OSchip/llvm-project
tsan: return the old fake numbers from malloc stats (some code already depends on them)
llvm-svn: 173348
This commit is contained in:
parent
971b0cd26f
commit
4e3b9802bd
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue