Emacs provides several functions and primitives that return time, both elapsed and processor time, used by the Emacs process.
This function returns a string representing the Emacs uptime—the elapsed wall-clock time this instance of Emacs is running. The string is formatted by
format-secondsaccording to the optional argument format. For the available format descriptors, see format-seconds. If format isnilor omitted, it defaults to"%Y, %D, %H, %M, %z%S".When called interactively, it prints the uptime in the echo area.
This function returns the processor run time used by Emacs as a list of three integers:
(high low microsec). The integers high and low combine to give the number of seconds, which is high * 2**16 + low.The third element, microsec, gives the microseconds (or 0 for systems that return time with the resolution of only one second).
Note that the time returned by this function excludes the time Emacs was not using the processor, and if the Emacs process has several threads, the returned value is the sum of the processor times used up by all Emacs threads.
If the system doesn't provide a way to determine the processor run time,
get-internal-run-timereturns the same time ascurrent-time.
This function returns the duration of the Emacs initialization (see Startup Summary) in seconds, as a string. When called interactively, it prints the duration in the echo area.