-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMainThreadQueue.h
46 lines (34 loc) · 1.39 KB
/
MainThreadQueue.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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/. */
#ifndef mozilla_MainThreadQueue_h
#define mozilla_MainThreadQueue_h
#include "mozilla/Attributes.h"
#include "mozilla/EventQueue.h"
#include "mozilla/RefPtr.h"
#include "mozilla/UniquePtr.h"
#include "nsThread.h"
#include "PrioritizedEventQueue.h"
namespace mozilla {
template <typename SynchronizedQueueT>
inline already_AddRefed<nsThread> CreateMainThread(
nsIIdlePeriod* aIdlePeriod,
SynchronizedQueueT** aSynchronizedQueue = nullptr) {
using MainThreadQueueT = PrioritizedEventQueue;
auto queue = MakeUnique<MainThreadQueueT>(do_AddRef(aIdlePeriod));
MainThreadQueueT* prioritized = queue.get();
RefPtr<SynchronizedQueueT> synchronizedQueue =
new SynchronizedQueueT(std::move(queue), true);
prioritized->SetMutexRef(synchronizedQueue->MutexRef());
// Setup "main" thread
RefPtr<nsThread> mainThread =
new nsThread(WrapNotNull(synchronizedQueue), nsThread::MAIN_THREAD, 0);
if (aSynchronizedQueue) {
synchronizedQueue.forget(aSynchronizedQueue);
}
return mainThread.forget();
}
} // namespace mozilla
#endif // mozilla_MainThreadQueue_h