Merge "Bionic: Fix wrong prototype of system call clock_nanosleep"

This commit is contained in:
Elliott Hughes
2012-04-16 09:09:04 -07:00
committed by android code review
3 changed files with 10 additions and 4 deletions

View File

@@ -142,7 +142,7 @@ int nanosleep (const struct timespec *, struct timespec *);
int clock_gettime (clockid_t clk_id, struct timespec *tp);
int clock_settime (clockid_t clk_id, const struct timespec *tp);
int clock_getres (clockid_t clk_id, struct timespec *res);
int clock_nanosleep (const struct timespec *req, struct timespec *rem);
int clock_nanosleep (clockid_t clock_id, int flags, const struct timespec *req, struct timespec *rem);
int getitimer (int, const struct itimerval *);
int setitimer (int, const struct itimerval *, struct itimerval *);
int __timer_create (clockid_t clockid, struct sigevent *evp, timer_t *timerid);