Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v5.8-rc7 14 lines 328 B view raw
1#ifndef _LINUX_TIMEKEEPING32_H 2#define _LINUX_TIMEKEEPING32_H 3/* 4 * These interfaces are all based on the old timespec type 5 * and should get replaced with the timespec64 based versions 6 * over time so we can remove the file here. 7 */ 8 9static inline unsigned long get_seconds(void) 10{ 11 return ktime_get_real_seconds(); 12} 13 14#endif