PowerStatus: give the locker a name.
* Plus minor cleanup.
This commit is contained in:
@@ -17,13 +17,15 @@
|
||||
#include <Path.h>
|
||||
|
||||
|
||||
static const char* kDriverDir = "/dev/power";
|
||||
|
||||
|
||||
RateBuffer::RateBuffer()
|
||||
:
|
||||
fPosition(0),
|
||||
fSize(kRateBufferSize),
|
||||
fCurrentSize(0)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -55,6 +57,9 @@ RateBuffer::GetMeanRate()
|
||||
}
|
||||
|
||||
|
||||
// #pragma mark -
|
||||
|
||||
|
||||
Battery::Battery(int driverHandler)
|
||||
:
|
||||
fDriverHandler(driverHandler)
|
||||
@@ -148,6 +153,10 @@ ACPIDriverInterface::~ACPIDriverInterface()
|
||||
for (int i = 0; i < fDriverList.CountItems(); i++)
|
||||
delete fDriverList.ItemAt(i);
|
||||
|
||||
ACPIDriverInterface::ACPIDriverInterface()
|
||||
:
|
||||
fInterfaceLocker("acpi interface")
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2009, Haiku, Inc. All Rights Reserved.
|
||||
* Copyright 2009-2015, Haiku, Inc. All Rights Reserved.
|
||||
* Distributed under the terms of the MIT License.
|
||||
*
|
||||
* Authors:
|
||||
@@ -47,7 +47,7 @@ public:
|
||||
private:
|
||||
void _Init();
|
||||
|
||||
|
||||
private:
|
||||
int fDriverHandler;
|
||||
status_t fInitStatus;
|
||||
|
||||
@@ -60,6 +60,7 @@ private:
|
||||
|
||||
class ACPIDriverInterface : public PowerStatusDriverInterface {
|
||||
public:
|
||||
ACPIDriverInterface();
|
||||
virtual ~ACPIDriverInterface();
|
||||
|
||||
virtual status_t Connect();
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2009, Haiku, Inc. All Rights Reserved.
|
||||
* Copyright 2009-2015, Haiku, Inc. All Rights Reserved.
|
||||
* Distributed under the terms of the MIT License.
|
||||
*
|
||||
* Authors:
|
||||
@@ -53,7 +53,8 @@ PowerStatusDriverInterface::PowerStatusDriverInterface()
|
||||
:
|
||||
fIsWatching(0),
|
||||
fWaitSem(-1),
|
||||
fThread(-1)
|
||||
fThread(-1),
|
||||
fListLocker("driver list")
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user