1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-20 09:45:12 +03:00
aports/testing/seamonkey/avoid-getcontext-musl.patch
2018-05-30 09:31:17 +00:00

15 lines
407 B
Diff

--- a/mozilla/tools/profiler/core/platform-linux.cc
+++ b/mozilla/tools/profiler/core/platform-linux.cc
@@ -625,10 +625,10 @@
{
MOZ_ASSERT(aContext);
ucontext_t* pContext = reinterpret_cast<ucontext_t*>(aContext);
- if (!getcontext(pContext)) {
+ /*if (!getcontext(pContext)) {
context = pContext;
SetSampleContext(this, aContext);
- }
+ }*/
}
void OS::SleepMicro(int microseconds)