gecko-dev/xpcom/base/AppShutdown.h
Doug Thayer b405df3a9a Bug 1615921 - Skip writing to pdf file if shutting down r=jwatt
We are intending to advance the toolkit.shutdown.lateWriteChecksStage
pref, to collect information (and crash on DEBUG) about writes which
happen during and after the xpcom-shutdown-threads notification. This
is producing failures in the PrintTargetPDF.cpp destructor because
we end up calling write_func and writing to (I presume) the target
PDF. This _feels_ like something we can just skip, so that's the
review request I am sending, but please let me know if it's critical
that we write to this file during shutdown.

Differential Revision: https://phabricator.services.mozilla.com/D63218

--HG--
extra : moz-landing-system : lando
2020-02-24 17:54:09 +00:00

70 lines
1.8 KiB
C++

/* -*- 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 AppShutdown_h
#define AppShutdown_h
#include "ShutdownPhase.h"
namespace mozilla {
enum class AppShutdownMode {
Normal,
Restart,
};
class AppShutdown {
public:
static bool IsShuttingDown();
/**
* Save environment variables that we might need if the app initiates a
* restart later in its lifecycle.
*/
static void SaveEnvVarsForPotentialRestart();
/**
* Init the shutdown with the requested shutdown mode.
*/
static void Init(AppShutdownMode aMode);
/**
* Confirm that we are in fact going to be shutting down.
*/
static void OnShutdownConfirmed();
/**
* If we've attempted to initiate a restart, this call will set up the
* necessary environment variables and launch the new process.
*/
static void MaybeDoRestart();
/**
* This will perform a fast shutdown via _exit(0) or similar if the user's
* prefs are configured to do so at this phase.
*/
static void MaybeFastShutdown(ShutdownPhase aPhase);
/**
* The _exit() call is not a safe way to terminate your own process on
* Windows, because _exit runs DLL detach callbacks which run static
* destructors for xul.dll.
*
* This method terminates the current process without those issues.
*/
static void DoImmediateExit();
/**
* True if the application is currently attempting to shut down in order to
* restart.
*/
static bool IsRestarting();
};
} // namespace mozilla
#endif // AppShutdown_h