Finally *tested* effect of fg and bg yield values (and changed them:-)

This commit is contained in:
Jack Jansen 1996-09-22 22:15:20 +00:00
parent d617c57dce
commit 0d1069e42f
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
"""fgbgtest - See how many CPU cycles we get"""
import time
loopct = 0L
oldloopct = 0L
oldt = time.time()
while 1:
t = time.time()
if t - oldt >= 1:
if oldloopct:
print loopct-oldloopct,'in one second'
oldloopct = loopct
oldt = time.time()
loopct = loopct + 1