зеркало из https://github.com/mozilla/gecko-dev.git
Bug 882543 - Register the MSG thread for in the profiler. r=benwa
This commit is contained in:
Родитель
ace1eb9803
Коммит
8673a04b53
|
@ -23,6 +23,7 @@
|
|||
#include "AudioNodeStream.h"
|
||||
#include <algorithm>
|
||||
#include "DOMMediaStream.h"
|
||||
#include "GeckoProfiler.h"
|
||||
|
||||
using namespace mozilla::layers;
|
||||
using namespace mozilla::dom;
|
||||
|
@ -1201,6 +1202,7 @@ MediaStreamGraphImpl::RunThread()
|
|||
if (!mRealtime) {
|
||||
mNonRealtimeIsRunning = false;
|
||||
}
|
||||
profiler_unregister_thread();
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -1246,6 +1248,23 @@ MediaStreamGraphImpl::ForceShutDown()
|
|||
|
||||
namespace {
|
||||
|
||||
class MediaStreamGraphInitThreadRunnable : public nsRunnable {
|
||||
public:
|
||||
explicit MediaStreamGraphInitThreadRunnable(MediaStreamGraphImpl* aGraph)
|
||||
: mGraph(aGraph)
|
||||
{
|
||||
}
|
||||
NS_IMETHOD Run()
|
||||
{
|
||||
char aLocal;
|
||||
profiler_register_thread("MediaStreamGraph", &aLocal);
|
||||
mGraph->RunThread();
|
||||
return NS_OK;
|
||||
}
|
||||
private:
|
||||
MediaStreamGraphImpl* mGraph;
|
||||
};
|
||||
|
||||
class MediaStreamGraphThreadRunnable : public nsRunnable {
|
||||
public:
|
||||
explicit MediaStreamGraphThreadRunnable(MediaStreamGraphImpl* aGraph)
|
||||
|
@ -1385,7 +1404,7 @@ MediaStreamGraphImpl::RunInStableState()
|
|||
// Start the thread now. We couldn't start it earlier because
|
||||
// the graph might exit immediately on finding it has no streams. The
|
||||
// first message for a new graph must create a stream.
|
||||
nsCOMPtr<nsIRunnable> event = new MediaStreamGraphThreadRunnable(this);
|
||||
nsCOMPtr<nsIRunnable> event = new MediaStreamGraphInitThreadRunnable(this);
|
||||
NS_NewNamedThread("MediaStreamGrph", getter_AddRefs(mThread), event);
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче