2017-10-28 02:10:06 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2016-07-19 21:56:06 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "VsyncIOThreadHolder.h"
|
|
|
|
|
2017-08-21 12:54:32 +03:00
|
|
|
#include "mozilla/SystemGroup.h"
|
|
|
|
|
2016-07-19 21:56:06 +03:00
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
|
|
|
|
VsyncIOThreadHolder::VsyncIOThreadHolder()
|
|
|
|
{
|
2016-10-07 10:07:10 +03:00
|
|
|
MOZ_COUNT_CTOR(VsyncIOThreadHolder);
|
2016-07-19 21:56:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
VsyncIOThreadHolder::~VsyncIOThreadHolder()
|
|
|
|
{
|
2016-10-07 10:07:10 +03:00
|
|
|
MOZ_COUNT_DTOR(VsyncIOThreadHolder);
|
|
|
|
|
2016-07-19 21:56:06 +03:00
|
|
|
if (!mThread) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-10-07 10:07:10 +03:00
|
|
|
if (NS_IsMainThread()) {
|
|
|
|
mThread->AsyncShutdown();
|
|
|
|
} else {
|
2017-08-21 12:54:32 +03:00
|
|
|
SystemGroup::Dispatch(TaskCategory::Other, NewRunnableMethod(
|
2017-06-12 22:34:10 +03:00
|
|
|
"nsIThread::AsyncShutdown", mThread, &nsIThread::AsyncShutdown));
|
2016-10-07 10:07:10 +03:00
|
|
|
}
|
2016-07-19 21:56:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
VsyncIOThreadHolder::Start()
|
|
|
|
{
|
|
|
|
nsresult rv = NS_NewNamedThread("VsyncIOThread", getter_AddRefs(mThread));
|
|
|
|
return NS_SUCCEEDED(rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
RefPtr<nsIThread>
|
|
|
|
VsyncIOThreadHolder::GetThread() const
|
|
|
|
{
|
|
|
|
return mThread;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace gfx
|
|
|
|
} // namespace mozilla
|