1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707
|
/*
* Copyright (C) 2007, 2009, 2015 Apple Inc. All rights reserved.
* Copyright (C) 2007 Justin Haygood <jhaygood@reaktix.com>
* Copyright (C) 2011 Research In Motion Limited. All rights reserved.
* Copyright (C) 2017 Yusuke Suzuki <utatane.tea@gmail.com>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of Apple Inc. ("Apple") nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include <wtf/Threading.h>
#if USE(PTHREADS)
#include <errno.h>
#include <wtf/MonotonicTime.h>
#include <wtf/NeverDestroyed.h>
#include <wtf/SafeStrerror.h>
#include <wtf/StdLibExtras.h>
#include <wtf/ThreadingPrimitives.h>
#include <wtf/WTFConfig.h>
#include <wtf/WordLock.h>
#if OS(LINUX)
#include <sched.h>
#include <sys/prctl.h>
#include <sys/syscall.h>
#include <wtf/linux/RealTimeThreads.h>
#ifndef SCHED_RESET_ON_FORK
#define SCHED_RESET_ON_FORK 0x40000000
#endif
#endif
#if !OS(DARWIN) && OS(UNIX)
#include <semaphore.h>
#include <sys/mman.h>
#include <unistd.h>
#include <pthread.h>
#if HAVE(PTHREAD_NP_H)
#include <pthread_np.h>
#endif
#endif
#if OS(DARWIN)
#include <mach/mach_traps.h>
#include <mach/thread_switch.h>
#endif
#if OS(QNX)
#define SA_RESTART 0
#endif
namespace WTF {
Thread::~Thread() = default;
#if !OS(DARWIN)
class Semaphore final {
WTF_MAKE_NONCOPYABLE(Semaphore);
WTF_MAKE_FAST_ALLOCATED;
public:
explicit Semaphore(unsigned initialValue)
{
int sharedBetweenProcesses = 0;
sem_init(&m_platformSemaphore, sharedBetweenProcesses, initialValue);
}
~Semaphore()
{
sem_destroy(&m_platformSemaphore);
}
void wait()
{
sem_wait(&m_platformSemaphore);
}
void post()
{
sem_post(&m_platformSemaphore);
}
private:
sem_t m_platformSemaphore;
};
static LazyNeverDestroyed<Semaphore> globalSemaphoreForSuspendResume;
static std::atomic<Thread*> targetThread { nullptr };
void Thread::signalHandlerSuspendResume(int, siginfo_t*, void* ucontext)
{
// Touching a global variable atomic types from signal handlers is allowed.
Thread* thread = targetThread.load();
if (thread->m_suspendCount) {
// This is signal handler invocation that is intended to be used to resume sigsuspend.
// So this handler invocation itself should not process.
//
// When signal comes, first, the system calls signal handler. And later, sigsuspend will be resumed. Signal handler invocation always precedes.
// So, the problem never happens that suspended.store(true, ...) will be executed before the handler is called.
// http://pubs.opengroup.org/onlinepubs/009695399/functions/sigsuspend.html
return;
}
void* approximateStackPointer = currentStackPointer();
if (!thread->m_stack.contains(approximateStackPointer)) {
// This happens if we use an alternative signal stack.
// 1. A user-defined signal handler is invoked with an alternative signal stack.
// 2. In the middle of the execution of the handler, we attempt to suspend the target thread.
// 3. A nested signal handler is executed.
// 4. The stack pointer saved in the machine context will be pointing to the alternative signal stack.
// In this case, we back off the suspension and retry a bit later.
thread->m_platformRegisters = nullptr;
globalSemaphoreForSuspendResume->post();
return;
}
#if HAVE(MACHINE_CONTEXT)
ucontext_t* userContext = static_cast<ucontext_t*>(ucontext);
thread->m_platformRegisters = ®istersFromUContext(userContext);
#else
UNUSED_PARAM(ucontext);
PlatformRegisters platformRegisters { approximateStackPointer };
thread->m_platformRegisters = &platformRegisters;
#endif
// Allow suspend caller to see that this thread is suspended.
// sem_post is async-signal-safe function. It means that we can call this from a signal handler.
// http://pubs.opengroup.org/onlinepubs/009695399/functions/xsh_chap02_04.html#tag_02_04_03
//
// And sem_post emits memory barrier that ensures that PlatformRegisters are correctly saved.
// http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap04.html#tag_04_11
globalSemaphoreForSuspendResume->post();
// Reaching here, sigThreadSuspendResume is blocked in this handler (this is configured by sigaction's sa_mask).
// So before calling sigsuspend, sigThreadSuspendResume to this thread is deferred. This ensures that the handler is not executed recursively.
sigset_t blockedSignalSet;
sigfillset(&blockedSignalSet);
sigdelset(&blockedSignalSet, g_wtfConfig.sigThreadSuspendResume);
sigsuspend(&blockedSignalSet);
thread->m_platformRegisters = nullptr;
// Allow resume caller to see that this thread is resumed.
globalSemaphoreForSuspendResume->post();
}
#endif // !OS(DARWIN)
void Thread::initializePlatformThreading()
{
if (!g_wtfConfig.isUserSpecifiedThreadSuspendResumeSignalConfigured) {
g_wtfConfig.sigThreadSuspendResume = SIGUSR1;
if (const char* string = getenv("JSC_SIGNAL_FOR_GC")) {
int32_t value = 0;
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN
if (sscanf(string, "%d", &value) == 1)
g_wtfConfig.sigThreadSuspendResume = value;
WTF_ALLOW_UNSAFE_BUFFER_USAGE_END
}
}
g_wtfConfig.isThreadSuspendResumeSignalConfigured = true;
#if !OS(DARWIN)
globalSemaphoreForSuspendResume.construct(0);
// Signal handlers are process global configuration.
// Intentionally block sigThreadSuspendResume in the handler.
// sigThreadSuspendResume will be allowed in the handler by sigsuspend.
auto attemptToSetSignal = [](int signal) -> bool {
struct sigaction action;
sigemptyset(&action.sa_mask);
sigaddset(&action.sa_mask, signal);
action.sa_sigaction = &signalHandlerSuspendResume;
action.sa_flags = SA_RESTART | SA_SIGINFO;
// Theoretically, this can have race conditions but currently, there is no way to deal with it,
// plus, we do not expect that this initialization is executed concurrently with the other
// initialization which also installs specific signals. If this is the problem, applications should
// change how to initialize things.
struct sigaction oldAction;
if (sigaction(signal, nullptr, &oldAction))
return false;
// It has signal already.
if (oldAction.sa_handler != SIG_DFL || std::bit_cast<void*>(oldAction.sa_sigaction) != std::bit_cast<void*>(SIG_DFL))
WTFLogAlways("Overriding existing handler for signal %d. Set JSC_SIGNAL_FOR_GC if you want WebKit to use a different signal", signal);
return !sigaction(signal, &action, 0);
};
bool signalIsInstalled = attemptToSetSignal(g_wtfConfig.sigThreadSuspendResume);
RELEASE_ASSERT(signalIsInstalled);
#endif
}
#if OS(LINUX)
ThreadIdentifier Thread::currentID()
{
return static_cast<ThreadIdentifier>(syscall(SYS_gettid));
}
#endif
void Thread::initializeCurrentThreadEvenIfNonWTFCreated()
{
#if !OS(DARWIN)
RELEASE_ASSERT(g_wtfConfig.isThreadSuspendResumeSignalConfigured);
sigset_t mask;
sigemptyset(&mask);
sigaddset(&mask, g_wtfConfig.sigThreadSuspendResume);
pthread_sigmask(SIG_UNBLOCK, &mask, 0);
#endif
}
static void* wtfThreadEntryPoint(void* context)
{
Thread::entryPoint(reinterpret_cast<Thread::NewThreadContext*>(context));
return nullptr;
}
#if HAVE(QOS_CLASSES)
dispatch_qos_class_t Thread::dispatchQOSClass(QOS qos)
{
switch (qos) {
case QOS::UserInteractive:
return adjustedQOSClass(QOS_CLASS_USER_INTERACTIVE);
case QOS::UserInitiated:
return adjustedQOSClass(QOS_CLASS_USER_INITIATED);
case QOS::Default:
return adjustedQOSClass(QOS_CLASS_DEFAULT);
case QOS::Utility:
return adjustedQOSClass(QOS_CLASS_UTILITY);
case QOS::Background:
return adjustedQOSClass(QOS_CLASS_BACKGROUND);
}
}
#endif
#if HAVE(SCHEDULING_POLICIES) || OS(LINUX)
static int schedPolicy(Thread::SchedulingPolicy schedulingPolicy)
{
switch (schedulingPolicy) {
case Thread::SchedulingPolicy::FIFO:
return SCHED_FIFO;
case Thread::SchedulingPolicy::Realtime:
return SCHED_RR;
case Thread::SchedulingPolicy::Other:
return SCHED_OTHER;
}
ASSERT_NOT_REACHED();
return SCHED_OTHER;
}
#endif
#if OS(LINUX)
static int schedPolicy(Thread::QOS qos, Thread::SchedulingPolicy schedulingPolicy)
{
// A specific scheduling policy can override the implied policy from QOS
auto policy = schedPolicy(schedulingPolicy);
if (policy != SCHED_OTHER)
return policy;
switch (qos) {
case Thread::QOS::UserInteractive:
return SCHED_RR;
case Thread::QOS::UserInitiated:
case Thread::QOS::Default:
return SCHED_OTHER;
case Thread::QOS::Utility:
return SCHED_BATCH;
case Thread::QOS::Background:
return SCHED_IDLE;
}
RELEASE_ASSERT_NOT_REACHED();
}
#endif
bool Thread::establishHandle(NewThreadContext* context, std::optional<size_t> stackSize, QOS qos, SchedulingPolicy schedulingPolicy)
{
pthread_t threadHandle;
pthread_attr_t attr;
pthread_attr_init(&attr);
#if HAVE(QOS_CLASSES)
pthread_attr_set_qos_class_np(&attr, dispatchQOSClass(qos), 0);
#endif
#if HAVE(SCHEDULING_POLICIES)
pthread_attr_setschedpolicy(&attr, schedPolicy(schedulingPolicy));
#endif
if (stackSize)
pthread_attr_setstacksize(&attr, stackSize.value());
int error = pthread_create(&threadHandle, &attr, wtfThreadEntryPoint, context);
pthread_attr_destroy(&attr);
if (error) {
LOG_ERROR("Failed to create pthread at entry point %p with context %p", wtfThreadEntryPoint, context);
return false;
}
#if OS(LINUX)
int policy = schedPolicy(qos, schedulingPolicy);
if (policy == SCHED_RR)
RealTimeThreads::singleton().registerThread(*this);
else {
struct sched_param param = { };
error = pthread_setschedparam(threadHandle, policy | SCHED_RESET_ON_FORK, ¶m);
if (error)
LOG_ERROR("Failed to set sched policy %d for thread %ld: %s", policy, threadHandle, safeStrerror(error).data());
}
#else
#if !HAVE(QOS_CLASSES)
UNUSED_PARAM(qos);
#endif
#if !HAVE(SCHEDULING_POLICIES)
UNUSED_PARAM(schedulingPolicy);
#endif
#endif
establishPlatformSpecificHandle(threadHandle);
return true;
}
void Thread::initializeCurrentThreadInternal(const char* threadName)
{
#if HAVE(PTHREAD_SETNAME_NP)
pthread_setname_np(normalizeThreadName(threadName));
#elif OS(LINUX)
prctl(PR_SET_NAME, normalizeThreadName(threadName));
#else
UNUSED_PARAM(threadName);
#endif
initializeCurrentThreadEvenIfNonWTFCreated();
}
void Thread::changePriority(int delta)
{
#if HAVE(PTHREAD_SETSCHEDPARAM)
Locker locker { m_mutex };
int policy;
struct sched_param param;
if (pthread_getschedparam(m_handle, &policy, ¶m))
return;
param.sched_priority += delta;
pthread_setschedparam(m_handle, policy, ¶m);
#endif
}
#if HAVE(THREAD_TIME_CONSTRAINTS)
void Thread::setThreadTimeConstraints(MonotonicTime period, MonotonicTime nominalComputation, MonotonicTime constraint, bool isPremptable)
{
#if OS(DARWIN)
thread_time_constraint_policy policy { };
policy.period = period.toMachAbsoluteTime();
policy.computation = nominalComputation.toMachAbsoluteTime();
policy.constraint = constraint.toMachAbsoluteTime();
policy.preemptible = isPremptable;
if (auto error = thread_policy_set(machThread(), THREAD_TIME_CONSTRAINT_POLICY, (thread_policy_t)&policy, THREAD_TIME_CONSTRAINT_POLICY_COUNT)) {
UNUSED_VARIABLE(error);
LOG_ERROR("Thread %p failed to set time constraints with error %d", this, error);
}
#else
ASSERT_NOT_REACHED();
#endif
}
#endif
int Thread::waitForCompletion()
{
pthread_t handle;
{
Locker locker { m_mutex };
handle = m_handle;
}
int joinResult = pthread_join(handle, 0);
if (joinResult == EDEADLK)
LOG_ERROR("Thread %p was found to be deadlocked trying to quit", this);
else if (joinResult)
LOG_ERROR("Thread %p was unable to be joined.\n", this);
Locker locker { m_mutex };
ASSERT(joinableState() == Joinable);
// If the thread has already exited, then do nothing. If the thread hasn't exited yet, then just signal that we've already joined on it.
// In both cases, Thread::destructTLS() will take care of destroying Thread.
if (!hasExited())
didJoin();
return joinResult;
}
void Thread::detach()
{
Locker locker { m_mutex };
int detachResult = pthread_detach(m_handle);
if (detachResult)
LOG_ERROR("Thread %p was unable to be detached\n", this);
if (!hasExited())
didBecomeDetached();
}
Thread& Thread::initializeCurrentTLS()
{
// Not a WTF-created thread, Thread is not established yet.
WTF::initialize();
Ref<Thread> thread = adoptRef(*new Thread());
thread->establishPlatformSpecificHandle(pthread_self());
thread->initializeInThread();
initializeCurrentThreadEvenIfNonWTFCreated();
return initializeTLS(WTFMove(thread));
}
bool Thread::signal(int signalNumber)
{
Locker locker { m_mutex };
if (hasExited())
return false;
int errNo = pthread_kill(m_handle, signalNumber);
return !errNo; // A 0 errNo means success.
}
auto Thread::suspend(const ThreadSuspendLocker&) -> Expected<void, PlatformSuspendError>
{
RELEASE_ASSERT_WITH_MESSAGE(this != &Thread::current(), "We do not support suspending the current thread itself.");
#if OS(DARWIN)
kern_return_t result = thread_suspend(m_platformThread);
if (result != KERN_SUCCESS)
return makeUnexpected(result);
return { };
#else
if (!m_suspendCount) {
targetThread.store(this);
while (true) {
// We must use pthread_kill to avoid queue-overflow problem with real-time signals.
int result = pthread_kill(m_handle, g_wtfConfig.sigThreadSuspendResume);
if (result)
return makeUnexpected(result);
globalSemaphoreForSuspendResume->wait();
if (m_platformRegisters)
break;
// Because of an alternative signal stack, we failed to suspend this thread.
// Retry suspension again after yielding.
Thread::yield();
}
}
++m_suspendCount;
return { };
#endif
}
void Thread::resume(const ThreadSuspendLocker&)
{
#if OS(DARWIN)
thread_resume(m_platformThread);
#else
if (m_suspendCount == 1) {
// When allowing sigThreadSuspendResume interrupt in the signal handler by sigsuspend and SigThreadSuspendResume is actually issued,
// the signal handler itself will be called once again.
// There are several ways to distinguish the handler invocation for suspend and resume.
// 1. Use different signal numbers. And check the signal number in the handler.
// 2. Use some arguments to distinguish suspend and resume in the handler.
// 3. Use thread's flag.
// In this implementaiton, we take (3). m_suspendCount is used to distinguish it.
// Note that we must use pthread_kill to avoid queue-overflow problem with real-time signals.
targetThread.store(this);
if (pthread_kill(m_handle, g_wtfConfig.sigThreadSuspendResume) == ESRCH)
return;
globalSemaphoreForSuspendResume->wait();
}
--m_suspendCount;
#endif
}
#if OS(DARWIN)
struct ThreadStateMetadata {
WTF_MAKE_STRUCT_FAST_ALLOCATED;
unsigned userCount;
thread_state_flavor_t flavor;
};
static ThreadStateMetadata threadStateMetadata()
{
#if CPU(X86)
unsigned userCount = sizeof(PlatformRegisters) / sizeof(int);
thread_state_flavor_t flavor = i386_THREAD_STATE;
#elif CPU(X86_64)
unsigned userCount = x86_THREAD_STATE64_COUNT;
thread_state_flavor_t flavor = x86_THREAD_STATE64;
#elif CPU(PPC)
unsigned userCount = PPC_THREAD_STATE_COUNT;
thread_state_flavor_t flavor = PPC_THREAD_STATE;
#elif CPU(PPC64)
unsigned userCount = PPC_THREAD_STATE64_COUNT;
thread_state_flavor_t flavor = PPC_THREAD_STATE64;
#elif CPU(ARM)
unsigned userCount = ARM_THREAD_STATE_COUNT;
thread_state_flavor_t flavor = ARM_THREAD_STATE;
#elif CPU(ARM64)
unsigned userCount = ARM_THREAD_STATE64_COUNT;
thread_state_flavor_t flavor = ARM_THREAD_STATE64;
#else
#error Unknown Architecture
#endif
return ThreadStateMetadata { userCount, flavor };
}
#endif // OS(DARWIN)
size_t Thread::getRegisters(const ThreadSuspendLocker&, PlatformRegisters& registers)
{
#if OS(DARWIN)
auto metadata = threadStateMetadata();
kern_return_t result = thread_get_state(m_platformThread, metadata.flavor, (thread_state_t)®isters, &metadata.userCount);
if (result != KERN_SUCCESS) {
WTFReportFatalError(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, "JavaScript garbage collection failed because thread_get_state returned an error (%d). This is probably the result of running inside Rosetta, which is not supported.", result);
CRASH();
}
return metadata.userCount * sizeof(uintptr_t);
#else
ASSERT_WITH_MESSAGE(m_suspendCount, "We can get registers only if the thread is suspended.");
ASSERT(m_platformRegisters);
registers = *m_platformRegisters;
return sizeof(PlatformRegisters);
#endif
}
void Thread::establishPlatformSpecificHandle(pthread_t handle)
{
Locker locker { m_mutex };
m_handle = handle;
#if OS(DARWIN)
m_platformThread = pthread_mach_thread_np(handle);
#endif
}
#if !HAVE(FAST_TLS)
void Thread::initializeTLSKey()
{
threadSpecificKeyCreate(&s_key, destructTLS);
}
#endif
Thread& Thread::initializeTLS(Ref<Thread>&& thread)
{
// We leak the ref to keep the Thread alive while it is held in TLS. destructTLS will deref it later at thread destruction time.
SUPPRESS_UNCOUNTED_LOCAL auto& threadInTLS = thread.leakRef();
#if !HAVE(FAST_TLS)
ASSERT(s_key != InvalidThreadSpecificKey);
threadSpecificSet(s_key, &threadInTLS);
#else
_pthread_setspecific_direct(WTF_THREAD_DATA_KEY, &threadInTLS);
pthread_key_init_np(WTF_THREAD_DATA_KEY, &destructTLS);
#endif
return threadInTLS;
}
void Thread::destructTLS(void* data)
{
Thread* thread = static_cast<Thread*>(data);
ASSERT(thread);
if (thread->m_isDestroyedOnce) {
thread->didExit();
thread->deref();
return;
}
thread->m_isDestroyedOnce = true;
// Re-setting the value for key causes another destructTLS() call after all other thread-specific destructors were called.
#if !HAVE(FAST_TLS)
ASSERT(s_key != InvalidThreadSpecificKey);
threadSpecificSet(s_key, thread);
#else
_pthread_setspecific_direct(WTF_THREAD_DATA_KEY, thread);
pthread_key_init_np(WTF_THREAD_DATA_KEY, &destructTLS);
#endif
// Destructor of ClientData can rely on Thread::current() (e.g. AtomStringTable).
// We destroy it after re-setting Thread::current() so that we can ensure destruction
// can still access to it.
thread->m_clientData = nullptr;
}
Mutex::~Mutex()
{
int result = pthread_mutex_destroy(&m_mutex);
ASSERT_UNUSED(result, !result);
}
void Mutex::lock()
{
int result = pthread_mutex_lock(&m_mutex);
ASSERT_UNUSED(result, !result);
}
bool Mutex::tryLock()
{
int result = pthread_mutex_trylock(&m_mutex);
if (result == 0)
return true;
if (result == EBUSY)
return false;
ASSERT_NOT_REACHED();
return false;
}
void Mutex::unlock()
{
int result = pthread_mutex_unlock(&m_mutex);
ASSERT_UNUSED(result, !result);
}
ThreadCondition::~ThreadCondition()
{
pthread_cond_destroy(&m_condition);
}
void ThreadCondition::wait(Mutex& mutex)
{
int result = pthread_cond_wait(&m_condition, &mutex.impl());
ASSERT_UNUSED(result, !result);
}
bool ThreadCondition::timedWait(Mutex& mutex, WallTime absoluteTime)
{
if (absoluteTime.isInfinity()) {
if (absoluteTime == -WallTime::infinity())
return false;
wait(mutex);
return true;
}
if (absoluteTime < WallTime::now())
return false;
if (absoluteTime > WallTime::fromRawSeconds(static_cast<double>(std::numeric_limits<time_t>::max()))) {
wait(mutex);
return true;
}
double rawSeconds = absoluteTime.secondsSinceEpoch().value();
time_t timeSeconds = static_cast<time_t>(rawSeconds);
long timeNanoseconds = static_cast<long>((rawSeconds - timeSeconds) * 1E9);
timespec targetTime;
targetTime.tv_sec = timeSeconds;
targetTime.tv_nsec = timeNanoseconds;
return pthread_cond_timedwait(&m_condition, &mutex.impl(), &targetTime) == 0;
}
void ThreadCondition::signal()
{
int result = pthread_cond_signal(&m_condition);
ASSERT_UNUSED(result, !result);
}
void ThreadCondition::broadcast()
{
int result = pthread_cond_broadcast(&m_condition);
ASSERT_UNUSED(result, !result);
}
void Thread::yield()
{
#if OS(DARWIN)
constexpr mach_msg_timeout_t timeoutInMS = 1;
thread_switch(MACH_PORT_NULL, SWITCH_OPTION_DEPRESS, timeoutInMS);
#else
sched_yield();
#endif
}
} // namespace WTF
#endif // USE(PTHREADS)
|