2016-05-27 21:54:31 +00: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: */
|
2012-05-21 11:12:37 +00: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/. */
|
2009-10-06 18:02:26 +00:00
|
|
|
|
2010-05-11 04:18:00 +00:00
|
|
|
#include "nsDebug.h"
|
2009-10-06 18:02:26 +00:00
|
|
|
|
2016-04-11 08:12:33 +00:00
|
|
|
#ifdef XP_WIN
|
|
|
|
#include <stdlib.h> // for _exit()
|
|
|
|
#else
|
|
|
|
#include <unistd.h> // for _exit()
|
|
|
|
#endif
|
|
|
|
|
2010-05-11 04:18:00 +00:00
|
|
|
#include "mozilla/ipc/IOThreadChild.h"
|
|
|
|
#include "mozilla/ipc/ProcessChild.h"
|
2009-10-06 18:02:26 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
2010-05-11 04:18:00 +00:00
|
|
|
namespace ipc {
|
2009-10-06 18:02:26 +00:00
|
|
|
|
2010-05-11 04:18:00 +00:00
|
|
|
ProcessChild* ProcessChild::gProcessChild;
|
|
|
|
|
2015-04-01 08:40:35 +00:00
|
|
|
ProcessChild::ProcessChild(ProcessId aParentPid)
|
2010-05-11 04:18:00 +00:00
|
|
|
: ChildProcess(new IOThreadChild())
|
|
|
|
, mUILoop(MessageLoop::current())
|
2015-04-01 08:40:35 +00:00
|
|
|
, mParentPid(aParentPid)
|
2009-10-06 18:02:26 +00:00
|
|
|
{
|
2015-02-09 22:34:50 +00:00
|
|
|
MOZ_ASSERT(mUILoop, "UILoop should be created by now");
|
|
|
|
MOZ_ASSERT(!gProcessChild, "should only be one ProcessChild");
|
2010-05-11 04:18:00 +00:00
|
|
|
gProcessChild = this;
|
|
|
|
}
|
2009-10-06 18:02:26 +00:00
|
|
|
|
2010-05-11 04:18:00 +00:00
|
|
|
ProcessChild::~ProcessChild()
|
|
|
|
{
|
2013-08-23 19:51:58 +00:00
|
|
|
gProcessChild = nullptr;
|
2010-05-11 04:18:00 +00:00
|
|
|
}
|
2009-10-06 18:02:26 +00:00
|
|
|
|
2016-04-11 08:12:33 +00:00
|
|
|
/* static */ void
|
|
|
|
ProcessChild::QuickExit()
|
|
|
|
{
|
|
|
|
#ifdef XP_WIN
|
|
|
|
// In bug 1254829, the destructor got called when dll got detached on windows,
|
|
|
|
// switch to TerminateProcess to bypass dll detach handler during the process
|
|
|
|
// termination.
|
|
|
|
TerminateProcess(GetCurrentProcess(), 0);
|
|
|
|
#else
|
|
|
|
_exit(0);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-05-11 04:18:00 +00:00
|
|
|
} // namespace ipc
|
2009-10-06 18:02:26 +00:00
|
|
|
} // namespace mozilla
|