am 4994deae: Merge "Bionic: Fix wrong prototype of system call clock_nanosleep"

* commit '4994deaef51d5fa1ac12e6160b47d9cbe3b2bc43':
  Bionic: Fix wrong prototype of system call clock_nanosleep
This commit is contained in:
Elliott Hughes 2012-04-16 13:12:46 -07:00 committed by Android Git Automerger
commit ef9876569a
3 changed files with 10 additions and 4 deletions

View File

@ -181,7 +181,7 @@ int nanosleep(const struct timespec *, struct timespec *) 162
int clock_gettime(clockid_t clk_id, struct timespec *tp) 263,265 int clock_gettime(clockid_t clk_id, struct timespec *tp) 263,265
int clock_settime(clockid_t clk_id, const struct timespec *tp) 262,264 int clock_settime(clockid_t clk_id, const struct timespec *tp) 262,264
int clock_getres(clockid_t clk_id, struct timespec *res) 264,266 int clock_getres(clockid_t clk_id, struct timespec *res) 264,266
int clock_nanosleep(const struct timespec *req, struct timespec *rem) 265,267 int clock_nanosleep(clockid_t clock_id, int flags, const struct timespec *req, struct timespec *rem) 265,267
int getitimer(int, const struct itimerval *) 105 int getitimer(int, const struct itimerval *) 105
int setitimer(int, const struct itimerval *, struct itimerval *) 104 int setitimer(int, const struct itimerval *, struct itimerval *) 104
int __timer_create:timer_create(clockid_t clockid, struct sigevent *evp, timer_t *timerid) 257,259 int __timer_create:timer_create(clockid_t clockid, struct sigevent *evp, timer_t *timerid) 257,259

View File

@ -9,8 +9,12 @@
clock_nanosleep: clock_nanosleep:
pushl %ebx pushl %ebx
pushl %ecx pushl %ecx
mov 12(%esp), %ebx pushl %edx
mov 16(%esp), %ecx pushl %esi
mov 20(%esp), %ebx
mov 24(%esp), %ecx
mov 28(%esp), %edx
mov 32(%esp), %esi
movl $__NR_clock_nanosleep, %eax movl $__NR_clock_nanosleep, %eax
int $0x80 int $0x80
cmpl $-129, %eax cmpl $-129, %eax
@ -21,6 +25,8 @@ clock_nanosleep:
addl $4, %esp addl $4, %esp
orl $-1, %eax orl $-1, %eax
1: 1:
popl %esi
popl %edx
popl %ecx popl %ecx
popl %ebx popl %ebx
ret ret

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_gettime (clockid_t clk_id, struct timespec *tp);
int clock_settime (clockid_t clk_id, const 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_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 getitimer (int, const struct itimerval *);
int setitimer (int, const struct itimerval *, struct itimerval *); int setitimer (int, const struct itimerval *, struct itimerval *);
int __timer_create (clockid_t clockid, struct sigevent *evp, timer_t *timerid); int __timer_create (clockid_t clockid, struct sigevent *evp, timer_t *timerid);