summaryrefslogblamecommitdiff
path: root/include/sys/time.h
blob: 766ac728b17a070842f7fb3273624c6c46ec76b8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                     
                             






                                            
                                                  














                                                                  

      
                  

                                                       









                           
#ifndef _SYS_TIME_H
#define _SYS_TIME_H
#ifdef __cplusplus
extern "C" {
#endif

/* All symbols from select.h except pselect are required anyway... */
#include <sys/select.h>

#define __NEED_time_t
#define __NEED_suseconds_t
#define __NEED_struct_timeval

#include <bits/alltypes.h>



int gettimeofday (struct timeval *, void *);

#if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE)

#define ITIMER_REAL    0
#define ITIMER_VIRTUAL 1
#define ITIMER_PROF    2

struct itimerval
{
	struct timeval it_interval;
	struct timeval it_value;
};

int getitimer (int, struct itimerval *);
int setitimer (int, const struct itimerval *, struct itimerval *);
int utimes (const char *, const struct timeval [2]);

#endif

#ifdef _GNU_SOURCE
int settimeofday (const struct timeval *, void *);
int adjtime (const struct timeval *, struct timeval *);
struct timezone {
	int tz_minuteswest;
	int tz_dsttime;
};
#endif

#ifdef __cplusplus
}
#endif
#endif