aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/proc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/runtime/proc.c')
-rw-r--r--src/pkg/runtime/proc.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/pkg/runtime/proc.c b/src/pkg/runtime/proc.c
index b0aa428e99..a8b98b73db 100644
--- a/src/pkg/runtime/proc.c
+++ b/src/pkg/runtime/proc.c
@@ -1384,9 +1384,6 @@ void
// but can have inconsistent g->sched, do not let GC observe it.
m->locks++;
- if(m->profilehz > 0)
- runtime·setprof(false);
-
// Leave SP around for gc and traceback.
save(runtime·getcallerpc(&dummy), runtime·getcallersp(&dummy));
@@ -1439,9 +1436,6 @@ void
m->locks++; // see comment in entersyscall
- if(m->profilehz > 0)
- runtime·setprof(false);
-
// Leave SP around for gc and traceback.
save(runtime·getcallerpc(&dummy), runtime·getcallersp(&dummy));
g->gcsp = g->sched.sp;
@@ -1477,10 +1471,6 @@ runtime·exitsyscall(void)
{
m->locks++; // see comment in entersyscall
- // Check whether the profiler needs to be turned on.
- if(m->profilehz > 0)
- runtime·setprof(true);
-
if(g->isbackground) // do not consider blocked scavenger for deadlock detection
inclocked(-1);