[compiler-rt] r200779 - tsan: fix windows build
    Dmitry Vyukov 
    dvyukov at google.com
       
    Tue Feb  4 09:29:44 PST 2014
    
    
  
Author: dvyukov
Date: Tue Feb  4 11:29:44 2014
New Revision: 200779
URL: http://llvm.org/viewvc/llvm-project?rev=200779&view=rev
Log:
tsan: fix windows build
Modified:
    compiler-rt/trunk/lib/tsan/rtl/tsan_platform_windows.cc
Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_platform_windows.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_platform_windows.cc?rev=200779&r1=200778&r2=200779&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_platform_windows.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_platform_windows.cc Tue Feb  4 11:29:44 2014
@@ -21,17 +21,18 @@
 
 namespace __tsan {
 
-ScopedInRtl::ScopedInRtl() {
+uptr GetShadowMemoryConsumption() {
+  return 0;
 }
 
-ScopedInRtl::~ScopedInRtl() {
+void FlushShadowMemory() {
 }
 
-uptr GetShadowMemoryConsumption() {
-  return 0;
+void WriteMemoryProfile(char *buf, uptr buf_size) {
 }
 
-void FlushShadowMemory() {
+uptr GetRSS() {
+  return 0;
 }
 
 const char *InitializePlatform() {
    
    
More information about the llvm-commits
mailing list