about summary refs log tree commit diff
path: root/src/rt/rust_upcall.cpp
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2010-07-22 15:39:41 -0700
committerGraydon Hoare <graydon@mozilla.com>2010-07-22 15:39:41 -0700
commit7ff20944960c26eee4fb2274afb3c29e5e4367ba (patch)
tree725fa28e8ad50451f2d28c8892d6082e971ae9d2 /src/rt/rust_upcall.cpp
parent1cb4a57b7b2fda8db6a225207c9b9c090ba565d1 (diff)
downloadrust-7ff20944960c26eee4fb2274afb3c29e5e4367ba.tar.gz
rust-7ff20944960c26eee4fb2274afb3c29e5e4367ba.zip
Back out too-platform-fussy bits in preempt-test work. I hate this test.
Diffstat (limited to 'src/rt/rust_upcall.cpp')
-rw-r--r--src/rt/rust_upcall.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/rt/rust_upcall.cpp b/src/rt/rust_upcall.cpp
index e931fc9b7f6..ff6874e4f48 100644
--- a/src/rt/rust_upcall.cpp
+++ b/src/rt/rust_upcall.cpp
@@ -1,11 +1,9 @@
 #include "rust_internal.h"
-#include "valgrind.h"
 
 // Upcalls.
 
 #ifdef __GNUC__
 #define LOG_UPCALL_ENTRY(task)                              \
-    YIELD_C_THREAD_IF_ON_VALGRIND;                          \
     (task)->dom->get_log().reset_indent(0);                 \
     (task)->log(rust_log::UPCALL,                           \
                 "> UPCALL %s - task: 0x%" PRIxPTR           \
@@ -15,7 +13,6 @@
     (task)->dom->get_log().indent();
 #else
 #define LOG_UPCALL_ENTRY(task)                              \
-    YIELD_C_THREAD_IF_ON_VALGRIND;                          \
     (task)->dom->get_log().reset_indent(0);                 \
     (task)->log(rust_log::UPCALL,                           \
                 "> UPCALL task: x%" PRIxPTR (task));        \