2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsXPCOM.h"
|
|
|
|
#include "nsMemory.h"
|
2013-08-12 14:44:56 -07:00
|
|
|
#include "nsIMemory.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsXPCOMPrivate.h"
|
|
|
|
#include "nsDebug.h"
|
|
|
|
#include "nsISupportsUtils.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsMemory static helper routines
|
|
|
|
|
|
|
|
NS_COM_GLUE nsresult
|
2011-09-28 23:19:26 -07:00
|
|
|
nsMemory::HeapMinimize(bool aImmediate)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIMemory> mem;
|
|
|
|
nsresult rv = NS_GetMemoryManager(getter_AddRefs(mem));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return mem->HeapMinimize(aImmediate);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_COM_GLUE void*
|
2012-08-09 00:10:11 -07:00
|
|
|
nsMemory::Clone(const void* ptr, size_t size)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
void* newPtr = NS_Alloc(size);
|
|
|
|
if (newPtr)
|
|
|
|
memcpy(newPtr, ptr, size);
|
|
|
|
return newPtr;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_COM_GLUE nsIMemory*
|
|
|
|
nsMemory::GetGlobalMemoryService()
|
|
|
|
{
|
|
|
|
nsIMemory* mem;
|
|
|
|
nsresult rv = NS_GetMemoryManager(&mem);
|
2012-07-30 07:20:58 -07:00
|
|
|
if (NS_FAILED(rv)) return nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return mem;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|