forked from pool/MozillaFirefox
c35c1573d5
* Increased content processes to 8 * Added capability to search through open tabs from the tab overflow menu * New backend for the storage.local WebExtensions API, providing I/O performance improvements when the extension updates a small subset of the stored data * WebExtension keyboard shortcuts can now be managed or overridden from about:addons * Improved scrolling behavior: Firefox will now attempt to keep content from jumping around while a page is loading by supporting scroll anchoring * New about:privatebrowsing with search * A certificate error page now notifies the user of the name of the certificate issuer that breaks HTTPs connections on intercepted connections to help troubleshooting possible anti-virus software issues. * Fixed an performance issue some Linux users experienced with the Downloads panel (bmo#1517101) * Firefox now blocks all autoplay media with sound by default. Users can add individual sites to an exceptions list or turn the blocking off. * System title bar is hidden by default to match Gnome guideline MFSA 2019-07 (bsc#1129821) * CVE-2019-9790 (bmo#1525145) Use-after-free when removing in-use DOM elements * CVE-2019-9791 (bmo#1530958) Type inference is incorrect for constructors entered through on-stack replacement with IonMonkey * CVE-2019-9792 (bmo#1532599) IonMonkey leaks JS_OPTIMIZED_OUT magic value to script OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=723
79 lines
2.5 KiB
Diff
79 lines
2.5 KiB
Diff
|
|
# HG changeset patch
|
|
# User Mike Hommey <mh+mozilla@glandium.org>
|
|
# Date 1526871862 -32400
|
|
# Node ID 94f21505ff13cd089f7129cd24927cf8b31a0f43
|
|
# Parent fc741a5ea37dbe145e0ca5f85e5dfb100f3c9091
|
|
Bug 1463035 - Remove MOZ_SIGNAL_TRAMPOLINE. r?darchons
|
|
|
|
For some reason, GNU as is not happy with the assembly generated after
|
|
bug 1238661 anymore on Debian armel.
|
|
|
|
OTOH, as mentioned in bug 1238661 comment 4, we actually don't need this
|
|
workaround anymore, so let's just kill it.
|
|
|
|
diff --git a/mfbt/moz.build b/mfbt/moz.build
|
|
--- a/mfbt/moz.build
|
|
+++ b/mfbt/moz.build
|
|
@@ -122,20 +122,16 @@ EXPORTS["double-conversion"] = [
|
|
LOCAL_INCLUDES += [
|
|
'/mfbt/double-conversion',
|
|
]
|
|
|
|
if CONFIG['OS_ARCH'] == 'WINNT':
|
|
EXPORTS.mozilla += [
|
|
'WindowsVersion.h',
|
|
]
|
|
-elif CONFIG['OS_ARCH'] == 'Linux':
|
|
- EXPORTS.mozilla += [
|
|
- 'LinuxSignal.h',
|
|
- ]
|
|
|
|
UNIFIED_SOURCES += [
|
|
'Assertions.cpp',
|
|
'ChaosMode.cpp',
|
|
'double-conversion/double-conversion/bignum-dtoa.cc',
|
|
'double-conversion/double-conversion/bignum.cc',
|
|
'double-conversion/double-conversion/cached-powers.cc',
|
|
'double-conversion/double-conversion/diy-fp.cc',
|
|
diff --git a/tools/profiler/core/platform-linux-android.cpp b/tools/profiler/core/platform-linux-android.cpp
|
|
--- a/tools/profiler/core/platform-linux-android.cpp
|
|
+++ b/tools/profiler/core/platform-linux-android.cpp
|
|
@@ -55,17 +55,16 @@
|
|
#ifdef __GLIBC__
|
|
# include <execinfo.h> // backtrace, backtrace_symbols
|
|
#endif // def __GLIBC__
|
|
#include <strings.h> // index
|
|
#include <errno.h>
|
|
#include <stdarg.h>
|
|
|
|
#include "prenv.h"
|
|
-#include "mozilla/LinuxSignal.h"
|
|
#include "mozilla/PodOperations.h"
|
|
#include "mozilla/DebugOnly.h"
|
|
|
|
#include <string.h>
|
|
#include <list>
|
|
|
|
using namespace mozilla;
|
|
|
|
@@ -248,17 +247,17 @@ Sampler::Sampler(PSLockRef aLock)
|
|
|
|
// NOTE: We don't initialize LUL here, instead initializing it in
|
|
// SamplerThread's constructor. This is because with the
|
|
// profiler_suspend_and_sample_thread entry point, we want to be able to
|
|
// sample without waiting for LUL to be initialized.
|
|
|
|
// Request profiling signals.
|
|
struct sigaction sa;
|
|
- sa.sa_sigaction = MOZ_SIGNAL_TRAMPOLINE(SigprofHandler);
|
|
+ sa.sa_sigaction = SigprofHandler;
|
|
sigemptyset(&sa.sa_mask);
|
|
sa.sa_flags = SA_RESTART | SA_SIGINFO;
|
|
if (sigaction(SIGPROF, &sa, &mOldSigprofHandler) != 0) {
|
|
MOZ_CRASH("Error installing SIGPROF handler in the profiler");
|
|
}
|
|
}
|
|
|
|
void Sampler::Disable(PSLockRef aLock) {
|