Welcome to mirror list, hosted at ThFree Co, Russian Federation.

time.c « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b53987353464c874880d0d41b8ae392cf87cb96e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* 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,gettimeofday,struct timeval *,tv,struct timezone *,tz)
_syscall2(int,nanosleep,const struct timespec *,req,struct timespec *,rem)