2016-05-28 00:54:31 +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: */
|
2012-05-21 15:12:37 +04: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 22:02:26 +04:00
|
|
|
|
2010-05-11 08:18:00 +04:00
|
|
|
#include "nsDebug.h"
|
2009-10-06 22:02:26 +04:00
|
|
|
|
2016-04-11 11:12:33 +03:00
|
|
|
#ifdef XP_WIN
|
|
|
|
#include <stdlib.h> // for _exit()
|
|
|
|
#else
|
|
|
|
#include <unistd.h> // for _exit()
|
|
|
|
#endif
|
|
|
|
|
2010-05-11 08:18:00 +04:00
|
|
|
#include "mozilla/ipc/IOThreadChild.h"
|
|
|
|
#include "mozilla/ipc/ProcessChild.h"
|
2009-10-06 22:02:26 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
2010-05-11 08:18:00 +04:00
|
|
|
namespace ipc {
|
2009-10-06 22:02:26 +04:00
|
|
|
|
2010-05-11 08:18:00 +04:00
|
|
|
ProcessChild* ProcessChild::gProcessChild;
|
|
|
|
|
2015-04-01 11:40:35 +03:00
|
|
|
ProcessChild::ProcessChild(ProcessId aParentPid)
|
2010-05-11 08:18:00 +04:00
|
|
|
: ChildProcess(new IOThreadChild())
|
|
|
|
, mUILoop(MessageLoop::current())
|
2015-04-01 11:40:35 +03:00
|
|
|
, mParentPid(aParentPid)
|
2009-10-06 22:02:26 +04:00
|
|
|
{
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(mUILoop, "UILoop should be created by now");
|
|
|
|
MOZ_ASSERT(!gProcessChild, "should only be one ProcessChild");
|
2010-05-11 08:18:00 +04:00
|
|
|
gProcessChild = this;
|
|
|
|
}
|
2009-10-06 22:02:26 +04:00
|
|
|
|
2010-05-11 08:18:00 +04:00
|
|
|
ProcessChild::~ProcessChild()
|
|
|
|
{
|
2013-08-23 23:51:58 +04:00
|
|
|
gProcessChild = nullptr;
|
2010-05-11 08:18:00 +04:00
|
|
|
}
|
2009-10-06 22:02:26 +04:00
|
|
|
|
2016-04-11 11:12:33 +03: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 08:18:00 +04:00
|
|
|
} // namespace ipc
|
2009-10-06 22:02:26 +04:00
|
|
|
} // namespace mozilla
|