Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 


Quelle  Freestanding.h   Sprache: 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 https://mozilla.org/MPL/2.0/. */


#ifndef mozilla_freestanding_Freestanding_h
#define mozilla_freestanding_Freestanding_h

/**
 * This header is automatically included in all source code residing in the
 * /browser/app/winlauncher/freestanding directory.
 */


#if defined(__STDC_HOSTED__) && __STDC_HOSTED__ == 1
#  error "This header should only be included by freestanding code"
#endif  // defined(__STDC_HOSTED__) && __STDC_HOSTED__ == 1

#define MOZ_USE_LAUNCHER_ERROR
#include "mozilla/NativeNt.h"

namespace mozilla {
namespace freestanding {

/**
 * Since this library is the only part of firefox.exe that needs special
 * treatment with respect to the heap, we implement |RtlNew| and |RtlDelete|
 * to be used instead of |new| and |delete| for any heap allocations inside
 * the freestanding library.
 */

template <typename T, typename... Args>
inline static T* RtlNew(Args&&... aArgs) {
  HANDLE processHeap = nt::RtlGetProcessHeap();
  if (!processHeap) {
    // Handle the case where the process heap is not initialized because
    // passing nullptr to RtlAllocateHeap crashes the process.
    return nullptr;
  }

  void* ptr = ::RtlAllocateHeap(processHeap, 0, sizeof(T));
  if (!ptr) {
    return nullptr;
  }

  return new (ptr) T(std::forward<Args>(aArgs)...);
}

template <typename T>
inline static void RtlDelete(T* aPtr) {
  if (!aPtr) {
    return;
  }

  aPtr->~T();
  ::RtlFreeHeap(nt::RtlGetProcessHeap(), 0, aPtr);
}

}  // namespace freestanding
}  // namespace mozilla

// Initialization code for all statically-allocated data in freestanding is
// placed into a separate section. This allows us to initialize any
// freestanding statics without needing to initialize everything else in this
// binary.
#pragma init_seg(".freestd$g")

#endif  // mozilla_freestanding_Freestanding_h

Messung V0.5
C=95 H=95 G=94

¤ 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.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Produkte
     Quellcodebibliothek

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Monitoring

Montastic status badge