From 76858a334d98216bff4aa816b8e51617807a2679 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Fri, 19 Jul 2002 17:08:50 +0000 Subject: [PATCH] BLooper::LockWithTimeout() was always using B_INFINITE_TIMEOUT. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@344 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/app/Looper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kits/app/Looper.cpp b/src/kits/app/Looper.cpp index c4ed1be822..91d47101ab 100644 --- a/src/kits/app/Looper.cpp +++ b/src/kits/app/Looper.cpp @@ -581,7 +581,7 @@ bool BLooper::IsLocked() const //------------------------------------------------------------------------------ status_t BLooper::LockWithTimeout(bigtime_t timeout) { - return _Lock(this, -1, B_INFINITE_TIMEOUT); + return _Lock(this, -1, timeout); } //------------------------------------------------------------------------------ thread_id BLooper::Thread() const