mesosphere: Result{} => Result()

This commit is contained in:
Michael Scire
2018-11-05 11:40:24 -08:00
parent cd1f74154d
commit 0a0c05481e
4 changed files with 11 additions and 11 deletions

View File

@@ -1,26 +0,0 @@
#include <mesosphere/processes/KEvent.hpp>
#include <mesosphere/core/KCoreContext.hpp>
#include <mesosphere/processes/KProcess.hpp>
namespace mesosphere
{
KEvent::~KEvent()
{
}
bool KEvent::IsAlive() const
{
return isInitialized;
}
Result KEvent::Initialize()
{
SetClientServerParent();
SetResourceOwner(KCoreContext::GetCurrentInstance().GetCurrentProcess());
isInitialized = true;
return ResultSuccess{};
}
}

View File

@@ -125,7 +125,7 @@ void KThread::HandleSyncObjectSignaled(KSynchronizationObject *syncObj)
{
if (GetSchedulingStatus() == SchedulingStatus::Paused) {
signaledSyncObject = syncObj;
syncResult = ResultSuccess{};
syncResult = ResultSuccess();
Reschedule(SchedulingStatus::Running);
}
}
@@ -152,13 +152,13 @@ Result KThread::WaitSynchronizationImpl(int &outId, KSynchronizationObject **syn
}
if (timeoutTime == KSystemClock::time_point{} && outId == -1) {
return ResultKernelTimedOut{};
return ResultKernelTimedOut();
}
if (IsDying()) {
return ResultKernelThreadTerminating{};
return ResultKernelThreadTerminating();
}
if (cancelled) {
return ResultKernelCancelled{};
return ResultKernelCancelled();
}
for (int i = 0; i < numSyncObjs; i++) {
@@ -167,7 +167,7 @@ Result KThread::WaitSynchronizationImpl(int &outId, KSynchronizationObject **syn
isWaitingSync = true;
signaledSyncObject = nullptr;
syncResult = ResultKernelTimedOut{};
syncResult = ResultKernelTimedOut();
Reschedule(SchedulingStatus::Paused);
if (timeoutTime > KSystemClock::time_point{}) {