conclusion
This commit is contained in:
parent
0f97a589b8
commit
9bc8a11afe
1069 changed files with 48694 additions and 11 deletions
49
05/musl-0.6.0/include/sys/time.h
Normal file
49
05/musl-0.6.0/include/sys/time.h
Normal file
|
@ -0,0 +1,49 @@
|
|||
#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 *);
|
||||
|
||||
/* extensions */
|
||||
int settimeofday (const struct timeval *, void *);
|
||||
int adjtime (const struct timeval *, struct timeval *);
|
||||
|
||||
|
||||
#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]);
|
||||
|
||||
#ifdef _GNU_SOURCE
|
||||
struct timezone {
|
||||
int tz_minuteswest;
|
||||
int tz_dsttime;
|
||||
};
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue