2010-04-20 13:12:02 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: sw=4 ts=4 et :
|
|
|
|
*/
|
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/. */
|
2010-04-20 13:12:02 -07:00
|
|
|
|
2014-02-10 14:57:01 -08:00
|
|
|
#if defined(XP_WIN)
|
2012-06-11 00:51:06 -07:00
|
|
|
# define MOZALLOC_EXPORT __declspec(dllexport)
|
|
|
|
#endif
|
|
|
|
|
2013-01-04 13:28:37 -08:00
|
|
|
#include "mozilla/mozalloc_abort.h"
|
2010-04-20 13:12:02 -07:00
|
|
|
|
2013-01-04 13:28:37 -08:00
|
|
|
#ifdef ANDROID
|
|
|
|
# include <android/log.h>
|
|
|
|
#endif
|
2012-06-05 16:49:30 -07:00
|
|
|
#include <stdio.h>
|
2010-04-20 13:12:02 -07:00
|
|
|
|
2013-01-04 13:28:37 -08:00
|
|
|
#include "mozilla/Assertions.h"
|
2010-04-20 13:12:02 -07:00
|
|
|
|
|
|
|
void
|
|
|
|
mozalloc_abort(const char* const msg)
|
|
|
|
{
|
2013-01-04 13:28:37 -08:00
|
|
|
#ifndef ANDROID
|
2010-04-20 13:12:02 -07:00
|
|
|
fputs(msg, stderr);
|
|
|
|
fputs("\n", stderr);
|
2013-01-04 13:28:37 -08:00
|
|
|
#else
|
|
|
|
__android_log_print(ANDROID_LOG_ERROR, "Gecko", "mozalloc_abort: %s", msg);
|
|
|
|
#endif
|
2012-06-05 16:49:30 -07:00
|
|
|
MOZ_CRASH();
|
2010-04-20 13:12:02 -07:00
|
|
|
}
|
2011-07-07 14:09:52 -07:00
|
|
|
|
|
|
|
#if defined(XP_UNIX)
|
|
|
|
// Define abort() here, so that it is used instead of the system abort(). This
|
|
|
|
// lets us control the behavior when aborting, in order to get better results
|
2012-06-05 16:49:30 -07:00
|
|
|
// on *NIX platforms. See mozalloc_abort for details.
|
2011-07-07 14:09:52 -07:00
|
|
|
void abort(void)
|
|
|
|
{
|
2012-06-05 16:49:30 -07:00
|
|
|
mozalloc_abort("Redirecting call to abort() to mozalloc_abort\n");
|
2011-07-07 14:09:52 -07:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|