/* -*- 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/. */
/** * When "chaos mode" is activated, code that makes implicitly nondeterministic * choices is encouraged to make random and extreme choices, to test more * code paths and uncover bugs.
*/ class ChaosMode { public: staticvoid SetChaosFeature(ChaosFeature aChaosFeature) {
detail::gChaosFeatures = aChaosFeature;
}
/** * Increase the chaos mode activation level. An equivalent number of * calls to leaveChaosMode must be made in order to restore the original * chaos mode state. If the activation level is nonzero all chaos mode * features are activated.
*/ staticvoid enterChaosMode() { detail::gChaosModeCounter++; }
/** * Decrease the chaos mode activation level. See enterChaosMode().
*/ staticvoid leaveChaosMode() {
MOZ_ASSERT(detail::gChaosModeCounter > 0);
detail::gChaosModeCounter--;
}
/** * Returns a somewhat (but not uniformly) random uint32_t < aBound. * Not to be used for anything except ChaosMode, since it's not very random.
*/ static uint32_t randomUint32LessThan(uint32_t aBound) {
MOZ_ASSERT(aBound != 0); return uint32_t(rand()) % aBound;
}
};
} /* namespace mozilla */
#endif/* mozilla_ChaosMode_h */
¤ Dauer der Verarbeitung: 0.1 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.