Kernel: Changed "ShouldWait" to return bool and "Acquire" to return void.

This commit is contained in:
bunnei 2015-01-20 18:16:45 -05:00
parent c68eb15695
commit 15b6a4d9ad
9 changed files with 42 additions and 71 deletions

View file

@ -57,12 +57,12 @@ public:
// TODO(bunnei): These functions exist to satisfy a hardware test with a Session object
// passed into WaitSynchronization. Figure out the meaning of them.
ResultVal<bool> ShouldWait() override {
return MakeResult<bool>(true);
bool ShouldWait() override {
return true;
}
ResultVal<bool> Acquire() override {
return MakeResult<bool>(false);
void Acquire() override {
_assert_msg_(Kernel, !ShouldWait(), "object unavailable!");
}
};