* The device watcher now waits on a semaphore, and doesn't use snooze() anymore.

* This has the advantage that we can quit PowerStatus instantly, instead of
  having to wait for two seconds in the worst case.
* Automatic whitespace cleanup.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32257 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2009-08-11 18:34:33 +00:00
parent 95ea1dab5a
commit 780e0413a1
4 changed files with 48 additions and 33 deletions
+2 -1
View File
@@ -6,6 +6,7 @@
* Clemens Zeidler, [email protected]
*/
#include "ACPIDriverInterface.h"
#include <stdio.h>
@@ -215,7 +216,7 @@ ACPIDriverInterface::_WatchPowerStatus()
while (atomic_get(&fIsWatching) > 0) {
_ReadBatteryInfo();
Broadcast(kMsgUpdate);
snooze(kUpdateInterval);
acquire_sem_etc(fWaitSem, 1, B_RELATIVE_TIMEOUT, kUpdateInterval);
}
}
+2 -1
View File
@@ -6,6 +6,7 @@
* Clemens Zeidler, [email protected]
*/
#include "APMDriverInterface.h"
#ifdef HAIKU_TARGET_PLATFORM_HAIKU
@@ -134,7 +135,7 @@ APMDriverInterface::_WatchPowerStatus()
{
while (atomic_get(&fIsWatching) > 0) {
Broadcast(kMsgUpdate);
snooze(kUpdateInterval);
acquire_sem_etc(fWaitSem, 1, B_RELATIVE_TIMEOUT, kUpdateInterval);
}
}
+21 -9
View File
@@ -46,18 +46,20 @@ Monitor::Broadcast(uint32 message)
}
// #pragma mark -
PowerStatusDriverInterface::PowerStatusDriverInterface()
:
fIsWatching(0),
fWaitSem(-1),
fThread(-1)
{
}
PowerStatusDriverInterface::~PowerStatusDriverInterface()
{
}
@@ -65,8 +67,8 @@ status_t
PowerStatusDriverInterface::StartWatching(BHandler* target)
{
BAutolock autolock(fListLocker);
status_t status = Monitor::StartWatching(target);
status_t status = Monitor::StartWatching(target);
if (status != B_OK)
return status;
@@ -76,13 +78,20 @@ PowerStatusDriverInterface::StartWatching(BHandler* target)
fThread = spawn_thread(&_ThreadWatchPowerFunction, "PowerStatusThread",
B_LOW_PRIORITY, this);
if (fThread >= 0) {
fWaitSem = create_sem(0, "power status wait");
atomic_set(&fIsWatching, 1);
status = resume_thread(fThread);
} else
return fThread;
if (status != B_OK && fWatcherList.CountItems() == 0)
if (status != B_OK && fWatcherList.CountItems() == 0) {
atomic_set(&fIsWatching, 0);
delete_sem(fWaitSem);
fThread = -1;
fWaitSem = -1;
}
return status;
}
@@ -95,11 +104,8 @@ PowerStatusDriverInterface::StopWatching(BHandler* target)
if (fThread < 0)
return B_BAD_VALUE;
if (fWatcherList.CountItems() == 1) {
atomic_set(&fIsWatching, 0);
wait_for_thread(fThread, NULL);
fThread = -1;
}
if (fWatcherList.CountItems() == 1)
Disconnect();
return Monitor::StopWatching(target);
}
@@ -116,9 +122,15 @@ PowerStatusDriverInterface::Broadcast(uint32 message)
void
PowerStatusDriverInterface::Disconnect()
{
if (fThread < 0)
return;
atomic_set(&fIsWatching, 0);
delete_sem(fWaitSem);
wait_for_thread(fThread, NULL);
fThread = -1;
fWaitSem = -1;
}
+1
View File
@@ -68,6 +68,7 @@ protected:
virtual void _WatchPowerStatus() = 0;
vint32 fIsWatching;
sem_id fWaitSem;
private:
static int32 _ThreadWatchPowerFunction(void* data);