summaryrefslogtreecommitdiff
path: root/msvc_extra_headers/ardourext/sys/time.h.input
blob: 2e54976641659b74863d22eb7041599f859cf7ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#ifndef _WINX_SYS_TIME_H_
#define _WINX_SYS_TIME_H_

//#include <features.h>
#include <WinSock.h> // gets 'struct timeval'

#ifdef _TIMEVAL_DEFINED
# define _STRUCT_TIMEVAL     1
#endif /* _TIMEVAL_DEFINED */
//#include <bits/types.h>
#define __need_time_t
#include <time.h>
#define __need_timeval
//#include <bits/time.h>

#ifdef _TIMEVAL_DEFINED /* also in winsock[2].h */
# undef __TIMEVAL__
# define __TIMEVAL__ 1
# undef _STRUCT_TIMEVAL
# define _STRUCT_TIMEVAL     1
#endif /* _TIMEVAL_DEFINED */

#ifdef __cplusplus
extern "C" {
#endif

#ifdef __USE_GNU
/* Macros for converting between `struct timeval' and `struct timespec'.  */
# define TIMEVAL_TO_TIMESPEC(tv, ts) {                                   \
        (ts)->tv_sec = (tv)->tv_sec;                                    \
        (ts)->tv_nsec = (tv)->tv_usec * 1000;                           \
}
# define TIMESPEC_TO_TIMEVAL(tv, ts) {                                   \
        (tv)->tv_sec = (ts)->tv_sec;                                    \
        (tv)->tv_usec = (ts)->tv_nsec / 1000;                           \
}
#endif

#ifdef __USE_BSD
/* Structure crudely representing a timezone.
   This is obsolete and should never be used.  */
struct timezone
  {
    int tz_minuteswest;       /* Minutes west of GMT.  */
    int tz_dsttime;      /* Nonzero if DST is ever in effect.  */
  };

typedef struct timezone *__restrict __timezone_ptr_t;
#else
typedef void *__restrict __timezone_ptr_t;
#endif

/* Get the current time of day and timezone information,
   putting it into *TV and *TZ.  If TZ is NULL, *TZ is not filled.
   Returns 0 on success, -1 on errors.
   NOTE: This form of timezone information is obsolete.
   Use the functions and variables declared in <time.h> instead.  */
extern int gettimeofday (struct timeval *__restrict __tv,
                __timezone_ptr_t __tz) __THROW;

extern int getntptimeofday (struct timespec *__restrict __tp,
                __timezone_ptr_t __tz) __THROW;

#ifdef __USE_BSD
/* Set the current time of day and timezone information.
   This call is restricted to the super-user.  */
extern int settimeofday (__const struct timeval *__tv,
                __const struct timezone *__tz) __THROW;
extern int setntptimeofday (__const struct timespec *__tp,
                __const struct timezone *__tz) __THROW;
#endif

///* Values for the first argument to `getitimer' and `setitimer'.  */
//enum __itimer_which
//  {
//    /* Timers run in real time.  */
//    ITIMER_REAL = 0,
//#define ITIMER_REAL ITIMER_REAL
//    /* Timers run only when the process is executing.  */
//    ITIMER_VIRTUAL = 1,
//#define ITIMER_VIRTUAL ITIMER_VIRTUAL
//    /* Timers run when the process is executing and when
//       the system is executing on behalf of the process.  */
//    ITIMER_PROF = 2
//#define ITIMER_PROF ITIMER_PROF
//  };

/* Type of the second argument to `getitimer' and
   the second and third arguments `setitimer'.  */
struct itimerval
  {
    /* Value to put into `it_value' when the timer expires.  */
    struct timeval it_interval;
    /* Time to the next timer expiration.  */
    struct timeval it_value;
  };

#if defined __USE_GNU && !defined __cplusplus
/* Use the nicer parameter type only in GNU mode and not for C++ since the
   strict C++ rules prevent the automatic promotion.  */
typedef enum __itimer_which __itimer_which_t;
#else
typedef int __itimer_which_t;
#endif

#ifdef __cplusplus
}
#endif

#endif /*_WINX_SYS_TIMEX_H_*/