f9e1049018
Mozilla Firefox is a free, open-source and cross-platform web browser for Windows, Linux, MacOS X and many other operating systems. It is fast and easy to use, and offers many advantages over other web browsers, such as tabbed browsing and the ability to block pop-up windows. Firefox also offers excellent bookmark and history management, and it can be extended by developers using industry standards such as XML, CSS, JavaScript, C++, etc. Many extensions are available.
16 lines
636 B
C++
16 lines
636 B
C++
$NetBSD: patch-memory_mozalloc_mozalloc__abort.cpp,v 1.1 2014/11/03 12:18:32 ryoon Exp $
|
|
|
|
--- memory/mozalloc/mozalloc_abort.cpp.orig 2013-05-11 19:19:46.000000000 +0000
|
|
+++ memory/mozalloc/mozalloc_abort.cpp
|
|
@@ -34,7 +34,11 @@ mozalloc_abort(const char* const msg)
|
|
// 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
|
|
// on *NIX platforms. See mozalloc_abort for details.
|
|
+#if defined(SOLARIS)
|
|
+void std::abort(void)
|
|
+#else
|
|
void abort(void)
|
|
+#endif
|
|
{
|
|
mozalloc_abort("Redirecting call to abort() to mozalloc_abort\n");
|
|
}
|