5 #ifndef __SYS_SYSTIME_H__ 6 #define __SYS_SYSTIME_H__ 9 #include <lv2/systime.h> 15 LV2_INLINE u64 sysGetTimebaseFrequency()
18 return_to_user_prog(u64);
21 LV2_SYSCALL sysGetCurrentTime(u64 *sec,u64 *nsec)
23 lv2syscall2(145,(u64)sec,(u64)nsec);
24 return_to_user_prog(s32);
27 LV2_SYSCALL sysSetCurrentTime(u64 sec,u64 nsec)
29 lv2syscall2(146,sec,nsec);
30 return_to_user_prog(s32);
33 LV2_SYSCALL sysSleep(u32 seconds)
35 lv2syscall1(142,seconds);
36 return_to_user_prog(s32);
39 LV2_SYSCALL sysUsleep(u32 useconds)
41 lv2syscall1(141,useconds);
42 return_to_user_prog(s32);