mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 16:28:38 +09:00
Issue #1877 - Resolve RELEASE_OR_BETA conditionals.
This commit is contained in:
parent
93c90e371b
commit
d4eac725fd
30 changed files with 75 additions and 144 deletions
|
|
@ -45,11 +45,7 @@
|
|||
#include "nsXPCOMPrivate.h"
|
||||
#include "prthread.h"
|
||||
|
||||
#ifdef RELEASE_OR_BETA
|
||||
#define THREADSAFETY_ASSERT MOZ_ASSERT
|
||||
#else
|
||||
#define THREADSAFETY_ASSERT MOZ_RELEASE_ASSERT
|
||||
#endif
|
||||
|
||||
#define CRASH_IN_CHILD_PROCESS(_msg) \
|
||||
do { \
|
||||
|
|
@ -331,7 +327,7 @@ class ChildImpl final : public BackgroundChildImpl
|
|||
// create the background thread after application shutdown has started.
|
||||
static bool sShutdownHasStarted;
|
||||
|
||||
#if defined(DEBUG) || !defined(RELEASE_OR_BETA)
|
||||
#if defined(DEBUG)
|
||||
nsIThread* mBoundThread;
|
||||
#endif
|
||||
|
||||
|
|
@ -351,11 +347,7 @@ public:
|
|||
{
|
||||
THREADSAFETY_ASSERT(mBoundThread);
|
||||
|
||||
#ifdef RELEASE_OR_BETA
|
||||
DebugOnly<bool> current;
|
||||
#else
|
||||
bool current;
|
||||
#endif
|
||||
THREADSAFETY_ASSERT(
|
||||
NS_SUCCEEDED(mBoundThread->IsOnCurrentThread(¤t)));
|
||||
THREADSAFETY_ASSERT(current);
|
||||
|
|
@ -368,7 +360,7 @@ public:
|
|||
}
|
||||
|
||||
ChildImpl()
|
||||
#if defined(DEBUG) || !defined(RELEASE_OR_BETA)
|
||||
#if defined(DEBUG)
|
||||
: mBoundThread(nullptr)
|
||||
#endif
|
||||
#ifdef DEBUG
|
||||
|
|
@ -449,7 +441,7 @@ private:
|
|||
{
|
||||
THREADSAFETY_ASSERT(!mBoundThread);
|
||||
|
||||
#if defined(DEBUG) || !defined(RELEASE_OR_BETA)
|
||||
#if defined(DEBUG)
|
||||
mBoundThread = NS_GetCurrentThread();
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue