diff options
Diffstat (limited to 'src/H5system.c')
-rw-r--r-- | src/H5system.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/H5system.c b/src/H5system.c index 4aada77..ac323c0 100644 --- a/src/H5system.c +++ b/src/H5system.c @@ -923,13 +923,12 @@ Wflock(int fd, int operation) { * Fall 2016 *-------------------------------------------------------------------------- */ -void -Wnanosleep(uint64_t nanosec) +int +Wnanosleep(const struct timespec *req, struct timespec *rem) { /* XXX: Currently just a placeholder */ - FUNC_ENTER_NOAPI_NOINIT_NOERR + return 0; - FUNC_LEAVE_NOAPI_VOID } /* end Wnanosleep() */ |