From f30d60edbc0d5047a2fdd01e25868e4b814107e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Tue, 8 Jun 2004 08:17:44 +0000 Subject: Patch #510695: Add TSC profiling for the VM. --- Python/pystate.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Python/pystate.c') diff --git a/Python/pystate.c b/Python/pystate.c index b0eb4c48a7..6a8beb940c 100644 --- a/Python/pystate.c +++ b/Python/pystate.c @@ -58,6 +58,9 @@ PyInterpreterState_New(void) #else interp->dlopenflags = RTLD_LAZY; #endif +#endif +#ifdef WITH_TSC + interp->tscdump = 0; #endif HEAD_LOCK(); -- cgit v1.2.1