Lines Matching refs:sched_clock
2 Clock sources, Clock events, sched_clock() and delay timers
12 architecture-specific overrides of the sched_clock() function and some
18 sched_clock() is used for scheduling and timestamping, and delay timers
108 sched_clock()
112 function in the kernel called sched_clock(). This function shall return the
114 may not provide an implementation of sched_clock() on its own. If a local
116 sched_clock().
118 As the name suggests, sched_clock() is used for scheduling the system,
123 Compared to clock sources, sched_clock() has to be very fast: it is called
126 for speed in sched_clock(). It however requires some of the same basic
129 The sched_clock() function may wrap only on unsigned long long boundaries,
138 The clock driving sched_clock() may stop or reset to zero during system
143 The sched_clock() function should be callable in any context, IRQ- and
149 sched_clock() nanosecond base from a 16- or 32-bit counter. Sometimes the
152 On SMP systems, it is crucial for performance that sched_clock() can be called
154 Some hardware (such as the x86 TSC) will cause the sched_clock() function to
157 that makes sched_clock() different from the ordinary clock source.