2010-04-20 20:12:02 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: sw=4 ts=4 et :
|
|
|
|
*/
|
2012-05-21 11:12:37 +00: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 20:12:02 +00:00
|
|
|
|
2012-06-11 07:51:06 +00:00
|
|
|
#if defined(XP_WIN) || defined(XP_OS2)
|
|
|
|
# define MOZALLOC_EXPORT __declspec(dllexport)
|
|
|
|
#endif
|
|
|
|
|
2012-06-05 23:49:30 +00:00
|
|
|
#include "mozilla/Assertions.h"
|
2010-04-20 20:12:02 +00:00
|
|
|
|
2012-06-05 23:49:30 +00:00
|
|
|
#include <stdio.h>
|
2010-04-20 20:12:02 +00:00
|
|
|
|
|
|
|
#include "mozilla/mozalloc_abort.h"
|
|
|
|
|
|
|
|
void
|
|
|
|
mozalloc_abort(const char* const msg)
|
|
|
|
{
|
|
|
|
fputs(msg, stderr);
|
|
|
|
fputs("\n", stderr);
|
2012-06-05 23:49:30 +00:00
|
|
|
MOZ_CRASH();
|
2010-04-20 20:12:02 +00:00
|
|
|
}
|
2011-07-07 21:09:52 +00: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 23:49:30 +00:00
|
|
|
// on *NIX platforms. See mozalloc_abort for details.
|
2011-07-07 21:09:52 +00:00
|
|
|
void abort(void)
|
|
|
|
{
|
2012-06-05 23:49:30 +00:00
|
|
|
mozalloc_abort("Redirecting call to abort() to mozalloc_abort\n");
|
2011-07-07 21:09:52 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|