From aa1564791d904234baaca77dbb4688e096e48069 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Wed, 17 Feb 2010 22:20:22 +0100 Subject: [PATCH] Disable thread priority code until we understand it better. --- src/tm-threads.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tm-threads.c b/src/tm-threads.c index 4d3e7239f6..3dbb990858 100644 --- a/src/tm-threads.c +++ b/src/tm-threads.c @@ -623,8 +623,10 @@ static int SetCPUAffinity(uint16_t cpuid) { * \retval TM_ECOE_OK */ TmEcode TmThreadSetThreadPriority(ThreadVars *tv, int prio) { +#if 0 /* VJ disabled while we figure out how to deal with this better */ tv->thread_setup_flags |= THREAD_SET_PRIORITY; tv->thread_priority = prio; +#endif return TM_ECODE_OK; }