Descriptiond8: Leak context_mutex_ so it will never be destroyed while locked
Calling quit() from d8 will call exit(), which will run static destructors. If
context_mutex_ is statically allocated, pthread_mutex_destroy will be called.
When running d8 in "isolates" mode, another thread may be running. If it calls
CreateEvaluationContext, it will lock the context_mutex_. If the mutex is
destroyed while it is locked, it will return an error.
This CL changes the Mutex to a LazyMutex, which will leak instead of being
destroyed.
BUG=v8:4279
R=jarin@chromium.org
R=machenbach@chromium.org
LOG=n
Committed: https://crrev.com/162f116a913058cb02f0e5fe1becf7c11d1db56b
Cr-Commit-Position: refs/heads/master@{#29709}
Patch Set 1 #Messages
Total messages: 7 (1 generated)
|