mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-15 19:09:58 +08:00
f6b2b56722
* libc/sys/linux/Makefile.am: Add resource.c. * libc/sys/linux/Makefile.in: Regenerated. * libc/sys/linux/resource.c: New file. * libc/sys/linux/time.c: Add settimeofday, getitimer, and setitimer. * libc/sys/linux/machine/i386/Makefile.am: Remove syscalls.c. * libc/sys/linux/machine/i386/Makefile.in: Regenerated. * libc/sys/linux/machine/i386/syscalls.c: Removed as functions are now found in libc/sys/linux/resource.c.
22 lines
713 B
C
22 lines
713 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 <linux/times.h>
|
|
#include <machine/syscall.h>
|
|
|
|
|
|
_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);
|