mirror of
https://github.com/apache/nuttx.git
synced 2026-06-04 14:53:47 +08:00
Merge branch 'timekeeping' of bitbucket.org:nuttx/nuttx
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
"_exit","unistd.h","","void","int"
|
||||
"adjtime","sys/time.h","defined(CONFIG_CLOCK_TIMEKEEPING)","int","FAR const struct timeval *","FAR struct timeval *"
|
||||
"aio_cancel","aio.h","defined(CONFIG_FS_AIO)","int","int","FAR struct aiocb *"
|
||||
"aio_fsync","aio.h","defined(CONFIG_FS_AIO)","int","int","FAR struct aiocb *"
|
||||
"aio_read","aio.h","defined(CONFIG_FS_AIO)","int","FAR struct aiocb *"
|
||||
|
||||
|
@@ -152,6 +152,9 @@ SYSCALL_LOOKUP(up_assert, 2, STUB_up_assert)
|
||||
SYSCALL_LOOKUP(clock_getres, 2, STUB_clock_getres)
|
||||
SYSCALL_LOOKUP(clock_gettime, 2, STUB_clock_gettime)
|
||||
SYSCALL_LOOKUP(clock_settime, 2, STUB_clock_settime)
|
||||
#ifdef CONFIG_CLOCK_TIMEKEEPING
|
||||
SYSCALL_LOOKUP(adjtime, 2, STUB_adjtime)
|
||||
#endif
|
||||
|
||||
/* The following are defined only if POSIX timers are supported */
|
||||
|
||||
|
||||
@@ -154,6 +154,7 @@ uintptr_t STUB_clock_systimer(int nbr);
|
||||
uintptr_t STUB_clock_getres(int nbr, uintptr_t parm1, uintptr_t parm2);
|
||||
uintptr_t STUB_clock_gettime(int nbr, uintptr_t parm1, uintptr_t parm2);
|
||||
uintptr_t STUB_clock_settime(int nbr, uintptr_t parm1, uintptr_t parm2);
|
||||
uintptr_t STUB_adjtime(int nbr, uintptr_t parm1, uintptr_t parm2);
|
||||
|
||||
/* The following are defined only if POSIX timers are supported */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user