mirror of
git://slackware.nl/current.git
synced 2025-01-15 15:41:54 +01:00
11403357f2
a/dialog-1.3_20200228-x86_64-1.txz: Upgraded. l/Mako-1.1.2-x86_64-1.txz: Upgraded. l/imagemagick-7.0.9_27-x86_64-1.txz: Upgraded. l/libcap-2.33-x86_64-1.txz: Upgraded. n/bind-9.16.0-x86_64-2.txz: Rebuilt. rc.bind: ensure /var/run/named exists before starting named. Thanks to MarcT. rc.bind: when stopping named, only kill processes in the current namespace. x/libevdev-1.9.0-x86_64-1.txz: Upgraded. x/wayland-protocols-1.20-noarch-1.txz: Upgraded. xap/seamonkey-2.53.1-x86_64-1.txz: Upgraded. This update contains security fixes and improvements. For more information, see: https://www.seamonkey-project.org/releases/seamonkey2.53.1 (* Security fix *) testing/packages/PAM/libcap-2.33-x86_64-1_pam.txz: Upgraded.
35 lines
931 B
Diff
35 lines
931 B
Diff
--- ./mozilla/tools/profiler/core/platform.h.orig 2020-02-17 17:39:44.000000000 -0600
|
|
+++ ./mozilla/tools/profiler/core/platform.h 2020-02-29 22:43:51.381996340 -0600
|
|
@@ -43,32 +43,6 @@
|
|
#include <vector>
|
|
#include "StackTop.h"
|
|
|
|
-// We need a definition of gettid(), but glibc doesn't provide a
|
|
-// wrapper for it.
|
|
-#if defined(__GLIBC__)
|
|
-#include <unistd.h>
|
|
-#include <sys/syscall.h>
|
|
-static inline pid_t gettid()
|
|
-{
|
|
- return (pid_t) syscall(SYS_gettid);
|
|
-}
|
|
-#elif defined(GP_OS_darwin)
|
|
-#include <unistd.h>
|
|
-#include <sys/syscall.h>
|
|
-static inline pid_t gettid()
|
|
-{
|
|
- return (pid_t) syscall(SYS_thread_selfid);
|
|
-}
|
|
-#elif defined(GP_OS_android)
|
|
-#include <unistd.h>
|
|
-#elif defined(GP_OS_windows)
|
|
-#include <windows.h>
|
|
-#include <process.h>
|
|
-#ifndef getpid
|
|
-#define getpid _getpid
|
|
-#endif
|
|
-#endif
|
|
-
|
|
extern mozilla::LazyLogModule gProfilerLog;
|
|
|
|
// These are for MOZ_LOG="prof:3" or higher. It's the default logging level for
|