Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(221)

Unified Diff: src/platform-solaris.cc

Issue 6667031: Use pthread_kill on solaris. (Closed)
Patch Set: Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform-solaris.cc
diff --git a/src/platform-solaris.cc b/src/platform-solaris.cc
index 25efb0fa1ac80767b9e63b644efae45112d36329..794fe07cd6b4a9ca182bf7c2f1644984ea97b43e 100644
--- a/src/platform-solaris.cc
+++ b/src/platform-solaris.cc
@@ -673,11 +673,7 @@ class Sampler::PlatformData : public Malloced {
void SendProfilingSignal() {
if (!signal_handler_installed_) return;
- // There doesn't seem to be a robust way to deliver a signal to a
- // particular thread that may have terminated already. We send the
- // signal to the whole process hoping the right thread will get
- // it.
- kill(vm_tgid_, SIGPROF);
+ pthread_kill(vm_tid_, SIGPROF);
}
void Sleep(SleepInterval full_or_half) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698