From: JINMEI Tatuya Date: Fri, 12 Oct 2012 21:32:22 +0000 (-0700) Subject: [2332] missing cleanup: removed an unused function. X-Git-Tag: trac2402_base~19^2~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d3983e1e68f66bbf6c69838aebe01a8f95b7bc33;p=thirdparty%2Fkea.git [2332] missing cleanup: removed an unused function. --- diff --git a/src/lib/util/threads/tests/condvar_unittest.cc b/src/lib/util/threads/tests/condvar_unittest.cc index 2695f842a3..4de4f856e8 100644 --- a/src/lib/util/threads/tests/condvar_unittest.cc +++ b/src/lib/util/threads/tests/condvar_unittest.cc @@ -128,12 +128,6 @@ TEST_F(CondVarTest, multiWaits) { EXPECT_EQ(4, shared_var); } -void -waiter(CondVar* condver, Mutex* mutex) { - Mutex::Locker locker(*mutex); - condver->wait(*mutex); -} - // Similar to the previous version of the same function, but just do // condvar operations. It will never wake up. void