Actions
Bug #355
closedThere's no clock_nanosleep() in time.h
Start date:
05/23/2013
Due date:
% Done:
100%
Estimated time:
CPU Architecture:
all
Host OS:
Toolchain:
all
Android version:
CrystaX NDK Version:
Files
Updated by Dmitry M. over 11 years ago
One of the most important cases we need to check:
clock_nanosleep(CLOCK_REALTIME, TIMER_ABSTIME, &sleeping, NULL)
Actions
#3
Updated by Dmitry M. over 11 years ago
- File arm_clock_nanosleep.S arm_clock_nanosleep.S added
- File mips_clock_nanosleep.S mips_clock_nanosleep.S added
- File x86_clock_nanosleep.S x86_clock_nanosleep.S added
Actually clock_nanosleep() is absent from C headers but there is correspondent syscall. So, fix is simple and consists of two steps:
- add prototype of clock_nanosleep into time.h
- add implementation of clock_nanosleep (which is actually the wrapper on syscall) into libcrystax.
Implementations for arm, mips and x86 are attached to this ticket
Updated by Dmitry M. about 10 years ago
- Category set to libcrystax
- Status changed from Open to In Progress
- Assignee set to Dmitry M.
Updated by Dmitry M. about 10 years ago
- Status changed from In Progress to Completed
- % Done changed from 0 to 100
Actions