2020-01-13 10:53:40 -07:00
|
|
|
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().
|
2020-01-13 10:37:09 -07:00
|
|
|
-#if defined(__GLIBC__)
|
2020-01-13 10:53:40 -07:00
|
|
|
return static_cast<int>(static_cast<pid_t>(syscall(SYS_gettid)));
|
|
|
|
-#else
|
|
|
|
- return static_cast<int>(gettid());
|
|
|
|
-#endif
|
2020-01-13 10:37:09 -07:00
|
|
|
}
|
2020-01-13 10:53:40 -07:00
|
|
|
|
|
|
|
void* GetStackTop(void* aGuess) { return aGuess; }
|