]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Back out r16414 (Enable fair scheduling by default on Linux.) following
authorJulian Seward <jseward@acm.org>
Thu, 1 Jun 2017 05:46:54 +0000 (05:46 +0000)
committerJulian Seward <jseward@acm.org>
Thu, 1 Jun 2017 05:46:54 +0000 (05:46 +0000)
further investigations showing large performance losses in some case, and no
obvious way to fix the problem.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@16428

coregrind/m_options.c

index 5f33471e609d08fdddb701724187a66b45760f6c..1bf2cc02e8311ab5a7eaa512501309d653f594df 100644 (file)
@@ -105,13 +105,8 @@ Bool   VG_(clo_debug_dump_syms) = False;
 Bool   VG_(clo_debug_dump_line) = False;
 Bool   VG_(clo_debug_dump_frames) = False;
 Bool   VG_(clo_trace_redir)    = False;
-
-#if defined(VGO_linux)
-enum FairSchedType VG_(clo_fair_sched) = enable_fair_sched;
-#else
-enum FairSchedType VG_(clo_fair_sched) = disable_fair_sched;
-#endif
-
+enum FairSchedType
+       VG_(clo_fair_sched)     = disable_fair_sched;
 Bool   VG_(clo_trace_sched)    = False;
 Bool   VG_(clo_profile_heap)   = False;
 Int    VG_(clo_core_redzone_size) = CORE_REDZONE_DEFAULT_SZB;