|
From: <sv...@va...> - 2014-09-01 21:12:51
|
Author: sewardj
Date: Mon Sep 1 21:12:44 2014
New Revision: 14414
Log:
Fix bogus bracketing. No functional change.
Modified:
trunk/coregrind/m_scheduler/scheduler.c
Modified: trunk/coregrind/m_scheduler/scheduler.c
==============================================================================
--- trunk/coregrind/m_scheduler/scheduler.c (original)
+++ trunk/coregrind/m_scheduler/scheduler.c Mon Sep 1 21:12:44 2014
@@ -1093,7 +1093,7 @@
runnable again. We could take a signal while the
syscall runs. */
- if (VG_(clo_sanity_level >= 3)) {
+ if (VG_(clo_sanity_level) >= 3) {
HChar buf[50];
VG_(sprintf)(buf, "(BEFORE SYSCALL, tid %d)", tid);
Bool ok = VG_(am_do_sync_check)(buf, __FILE__, __LINE__);
@@ -1102,7 +1102,7 @@
SCHEDSETJMP(tid, jumped, VG_(client_syscall)(tid, trc));
- if (VG_(clo_sanity_level >= 3)) {
+ if (VG_(clo_sanity_level) >= 3) {
HChar buf[50];
VG_(sprintf)(buf, "(AFTER SYSCALL, tid %d)", tid);
Bool ok = VG_(am_do_sync_check)(buf, __FILE__, __LINE__);
|