Lines Matching full:systimes
3 """ systimes() user and system timer implementations for use by
24 def systimes():
44 # * Add a function that returns the resolution of systimes()
85 # for systimes()
146 # Select the default for the systimes() function
149 systimes = getrusage_systimes
152 systimes = process_time_clock_systimes
155 systimes = wall_clock_clock_systimes
158 systimes = wall_clock_time_systimes
161 systimes = win32process_getprocesstimes_systimes
164 systimes = ctypes_getprocesstimes_systimes
167 raise TypeError('no suitable systimes() implementation found')
174 systimes().
177 user, system = systimes()
188 print 'Testing systimes() under load conditions'
189 t0 = systimes()
191 t1 = systimes()
198 print 'Testing systimes() under idle conditions'
199 t0 = systimes()
201 t1 = systimes()