Patch #510695: Add TSC profiling for the VM.

This commit is contained in:
Martin v. Löwis 2004-06-08 08:17:44 +00:00
parent d68d3ee3dd
commit f30d60edbc
10 changed files with 243 additions and 3 deletions

View file

@ -58,6 +58,9 @@ PyInterpreterState_New(void)
#else
interp->dlopenflags = RTLD_LAZY;
#endif
#endif
#ifdef WITH_TSC
interp->tscdump = 0;
#endif
HEAD_LOCK();