Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Firefox/gfx/graphite2/src/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  MozGrMalloc.h   Sprache: C

 
/* 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 MOZ_GR_MALLOC_H
#define MOZ_GR_MALLOC_H

// Override malloc() and friends to call moz_xmalloc() etc, so that we get
// predictable, safe OOM crashes rather than relying on the code to handle
// allocation failures reliably.

#include "mozilla/mozalloc.h"

#if defined(XP_LINUX) && !defined(ANDROID)

#define malloc moz_xmalloc
#define calloc moz_xcalloc
#define realloc moz_xrealloc

#else

// extern "C" is needed for the Solaris build, while the inline
// functions are needed for the MinGW build. They break gcc 5.4.0
// on Linux however, so keep the old #define's above for Linux

extern "C" inline void* malloc(size_t size)
{
    return moz_xmalloc(size);
}

extern "C" inline void* calloc(size_t nmemb, size_t size)
{
    return moz_xcalloc(nmemb, size);
}

extern "C" inline void* realloc(void *ptr, size_t size)
{
    return moz_xrealloc(ptr, size);
}

#endif // defined(XP_LINUX)

#endif // MOZ_GR_MALLOC_H

Messung V0.5
C=96 H=97 G=96

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

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 und die Messung sind noch experimentell.