mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 03:19:54 +08:00
d427d09204
* libc/include/stdio.h (__getline, __getdelim): New prototypes. * libc/include/time.h [HAVE_GETDATE](getdate, getdate_r): Ditto. [HAVE_GETDATE](getdate_err): New error code. * libc/stdio/Makefile.am: Add support for getline.c and getdelim.c. * libc/stdio/Makefile.in: Regenerated. * libc/stdio/getdelim.c: New file. * libc/stdio/getline.c: Ditto. * libc/sys/linux/Makefile.am: Add support for getdate.c, getdate_err.c and ntp_gettime.c. Also add AM_CFLAGS to point to libc/stdio. * libc/sys/linux/Makefile.in: Regenerated. * libc/sys/linux/getdate.c: New file. * libc/sys/linux/getdate_err.c: Ditto. * libc/sys/linux/ntp_gettime.c: Ditto. * libc/sys/linux/time.c (adjtimex, ntp_adjtime): New functions. * libc/sys/linux/sys/stdio.h (getline, getdelim): New macros.
27 lines
887 B
C
27 lines
887 B
C
/* libc/sys/linux/time.c - Time-related system calls */
|
|
|
|
/* Written 2000 by Werner Almesberger */
|
|
|
|
|
|
#include <errno.h>
|
|
#include <sys/types.h>
|
|
#include <sys/time.h>
|
|
#include <sys/timex.h>
|
|
#include <linux/times.h>
|
|
#include <machine/syscall.h>
|
|
|
|
#define __NR___adjtimex __NR_adjtimex
|
|
|
|
_syscall1(int,__adjtimex,struct timex *,tx)
|
|
_syscall1(time_t,time,time_t *,t)
|
|
_syscall1(clock_t,times,struct tms *,buf)
|
|
_syscall2(int,getitimer,int,type,struct itimerval *,old)
|
|
_syscall3(int,setitimer,int,type,const struct itimerval *,new,struct itimerval *,old)
|
|
_syscall2(int,gettimeofday,struct timeval *,tv,struct timezone *,tz)
|
|
_syscall2(int,settimeofday,const struct timeval *,tv,const struct timezone *,tz)
|
|
_syscall2(int,nanosleep,const struct timespec *,req,struct timespec *,rem)
|
|
|
|
weak_alias(__libc_gettimeofday,__gettimeofday);
|
|
weak_alias(__adjtimex,adjtimex);
|
|
weak_alias(__adjtimex,ntp_adjtime);
|