Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(291)

Unified Diff: src/pkg/runtime/proc.c

Issue 12167043: code review 12167043: runtime: do not park sysmon thread if any goroutines ar... (Closed)
Patch Set: diff -r d39481d8010a https://dvyukov%40google.com@code.google.com/p/go/ Created 11 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
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/pkg/runtime/proc.c
===================================================================
--- a/src/pkg/runtime/proc.c
+++ b/src/pkg/runtime/proc.c
@@ -1536,6 +1536,10 @@
if(runtime·sched.pidle) {
runtime·lock(&runtime·sched);
p = pidleget();
+ if(p && runtime·atomicload(&runtime·sched.sysmonwait)) {
+ runtime·atomicstore(&runtime·sched.sysmonwait, 0);
+ runtime·notewakeup(&runtime·sched.sysmonnote);
+ }
runtime·unlock(&runtime·sched);
if(p) {
acquirep(p);
@@ -1559,6 +1563,10 @@
p = pidleget();
if(p == nil)
globrunqput(gp);
+ else if(runtime·atomicload(&runtime·sched.sysmonwait)) {
+ runtime·atomicstore(&runtime·sched.sysmonwait, 0);
+ runtime·notewakeup(&runtime·sched.sysmonnote);
+ }
runtime·unlock(&runtime·sched);
if(p) {
acquirep(p);
@@ -1924,24 +1932,38 @@
uintptr pcbuf[100];
} prof;
+static void
+System(void)
+{
+}
+
// Called if we receive a SIGPROF signal.
void
runtime·sigprof(uint8 *pc, uint8 *sp, uint8 *lr, G *gp)
{
int32 n;
+ bool traceback;
+ if(prof.fn == nil || prof.hz == 0)
+ return;
+ traceback = true;
// Windows does profiling in a dedicated thread w/o m.
if(!Windows && (m == nil || m->mcache == nil))
- return;
- if(prof.fn == nil || prof.hz == 0)
- return;
+ traceback = false;
+ if(gp == m->g0 || gp == m->gsignal)
+ traceback = false;
+ if(m != nil && m->racecall)
+ traceback = false;
runtime·lock(&prof);
if(prof.fn == nil) {
runtime·unlock(&prof);
return;
}
- n = runtime·gentraceback((uintptr)pc, (uintptr)sp, (uintptr)lr, gp, 0, prof.pcbuf, nelem(prof.pcbuf), nil, nil, false);
+ n = 1;
+ prof.pcbuf[0] = (uintptr)pc;
+ if(traceback)
+ n = runtime·gentraceback((uintptr)pc, (uintptr)sp, (uintptr)lr, gp, 0, prof.pcbuf, nelem(prof.pcbuf), nil, nil, false);
if(n > 0)
prof.fn(prof.pcbuf, n);
runtime·unlock(&prof);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b