2013-11-22 Bryan Dunsmore <dunsmoreb@gmail.com>
* libc/include/sys/time.h (gettimeofday): Add restrict keyword. (setitimer): Likewise. * libc/sys/rdos/gettod.c (gettimeofday): Likewise. * libc/sys/rtems/crt0.c (gettimeofday): Likewise.
This commit is contained in:
parent
849fe25d0e
commit
9cd69d84ef
|
@ -1,3 +1,10 @@
|
|||
2013-11-22 Bryan Dunsmore <dunsmoreb@gmail.com>
|
||||
|
||||
* libc/include/sys/time.h (gettimeofday): Add restrict keyword.
|
||||
(setitimer): Likewise.
|
||||
* libc/sys/rdos/gettod.c (gettimeofday): Likewise.
|
||||
* libc/sys/rtems/crt0.c (gettimeofday): Likewise.
|
||||
|
||||
2013-11-22 Chirayu Desai <chirayudesai1@gmail.com>
|
||||
|
||||
* libc/include/sys/unistd.h (readlink): Add restrict keyword.
|
||||
|
|
|
@ -74,12 +74,13 @@ struct itimerval {
|
|||
int _EXFUN(_gettimeofday, (struct timeval *__p, void *__tz));
|
||||
#endif
|
||||
|
||||
int _EXFUN(gettimeofday, (struct timeval *__p, void *__tz));
|
||||
int _EXFUN(gettimeofday, (struct timeval *__restrict __p,
|
||||
void *__restrict __tz));
|
||||
int _EXFUN(settimeofday, (const struct timeval *, const struct timezone *));
|
||||
int _EXFUN(utimes, (const char *__path, const struct timeval *__tvp));
|
||||
int _EXFUN(getitimer, (int __which, struct itimerval *__value));
|
||||
int _EXFUN(setitimer, (int __which, const struct itimerval *__value,
|
||||
struct itimerval *__ovalue));
|
||||
int _EXFUN(setitimer, (int __which, const struct itimerval *__restrict __value,
|
||||
struct itimerval *__restrict __ovalue));
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
|
@ -59,7 +59,7 @@ RTEMS_STUB(pid_t, fork(void), { return -1; })
|
|||
RTEMS_STUB(int, fstat(int fd, struct stat *buf), { return -1; })
|
||||
RTEMS_STUB(int, getdents(int fd, void *dp, int count), { return -1; })
|
||||
RTEMS_STUB(char *, getlogin(void), { return 0; })
|
||||
RTEMS_STUB(int, gettimeofday(struct timeval *tv, struct timezone *tz), { return -1; })
|
||||
RTEMS_STUB(int, gettimeofday(struct timeval *__restrict tv, struct timezone *__restrict tz), { return -1; })
|
||||
RTEMS_STUB(struct passwd *, getpwnam(const char *name), { return 0; })
|
||||
RTEMS_STUB(struct passwd *, getpwuid(uid_t uid), { return 0; })
|
||||
RTEMS_STUB(uid_t, getuid(void), { return 0; })
|
||||
|
|
Loading…
Reference in New Issue