2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-07 16:32:28 +00:00
repo/extra/firefox-esr/patches/fix-bug-1261392.patch
Dylan Araps 79eee75fea
firefox-esr: New package at 68.8.0esr
The regular 'firefox' package will be updated to track the latest
release. This fixes our package being incorrectly named in the
repositories.
2020-05-05 09:57:45 +03:00

18 lines
636 B
Diff

diff --git a/tools/profiler/core/platform-linux-android.cpp b/tools/profiler/core/platform-linux-android.cpp
index 07857f2..92e693c 100644
--- a/tools/profiler/core/platform-linux-android.cpp
+++ b/tools/profiler/core/platform-linux-android.cpp
@@ -72,12 +72,7 @@ using namespace mozilla;
int profiler_current_process_id() { return getpid(); }
int profiler_current_thread_id() {
- // glibc doesn't provide a wrapper for gettid().
-#if defined(__GLIBC__)
return static_cast<int>(static_cast<pid_t>(syscall(SYS_gettid)));
-#else
- return static_cast<int>(gettid());
-#endif
}
void* GetStackTop(void* aGuess) { return aGuess; }