2013-11-25 Sahil Patnayakuni <sahil.patnayakuni@gmail.com>
* libc/include/time.h (time): Add restrict keyword. * libc/include/wchar.h (wcsftime): Add restrict keyword. * libc/time/asctime_r.c (asctime_r): Same. * libc/time/gmtime_r.c (gmtime_r): Same. * libc/time/lcltime_r.c (lcltime_r): Same. * libc/time/strftime.c (strftime): Same. * libc/time/strptime.c (strptime): Same. * libc/sys/linux/linuxthreads/timer_create.c (timer_create): Same. * libc/sys/linux/linuxthreads/timer_settime.c (timer_settime): Same.
This commit is contained in:
@ -30,8 +30,8 @@
|
||||
int
|
||||
timer_create (clock_id, evp, timerid)
|
||||
clockid_t clock_id;
|
||||
struct sigevent *evp;
|
||||
timer_t *timerid;
|
||||
struct sigevent *__restrict evp;
|
||||
timer_t *__restrict timerid;
|
||||
{
|
||||
int retval = -1;
|
||||
struct timer_node *newtimer = NULL;
|
||||
|
@ -29,8 +29,8 @@ int
|
||||
timer_settime (timerid, flags, value, ovalue)
|
||||
timer_t timerid;
|
||||
int flags;
|
||||
const struct itimerspec *value;
|
||||
struct itimerspec *ovalue;
|
||||
const struct itimerspec *__restrict value;
|
||||
struct itimerspec *__restrict ovalue;
|
||||
{
|
||||
struct timer_node *timer;
|
||||
struct thread_node *thread = NULL;
|
||||
|
Reference in New Issue
Block a user