1994-05-24 09:57:34 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1989, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
* (c) UNIX System Laboratories, Inc.
|
|
|
|
* All or some portions of this file are derived from material licensed
|
|
|
|
* to the University of California by American Telephone and Telegraph
|
|
|
|
* Co. or Unix System Laboratories, Inc. and are reproduced herein with
|
|
|
|
* the permission of UNIX System Laboratories, Inc.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2010-02-16 19:39:50 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-24 09:57:34 +00:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* @(#)time.h 8.3 (Berkeley) 1/21/94
|
|
|
|
*/
|
|
|
|
|
2001-03-31 07:24:35 +00:00
|
|
|
/*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
1994-05-24 09:57:34 +00:00
|
|
|
#ifndef _TIME_H_
|
|
|
|
#define _TIME_H_
|
|
|
|
|
2002-06-15 23:35:37 +00:00
|
|
|
#include <sys/cdefs.h>
|
2003-12-07 21:10:06 +00:00
|
|
|
#include <sys/_null.h>
|
2002-08-21 16:20:02 +00:00
|
|
|
#include <sys/_types.h>
|
|
|
|
|
2002-06-17 01:31:25 +00:00
|
|
|
#if __POSIX_VISIBLE > 0 && __POSIX_VISIBLE < 200112 || __BSD_VISIBLE
|
1995-02-03 21:47:48 +00:00
|
|
|
/*
|
|
|
|
* Frequency of the clock ticks reported by times(). Deprecated - use
|
2002-06-15 23:35:37 +00:00
|
|
|
* sysconf(_SC_CLK_TCK) instead. (Removed in 1003.1-2001.)
|
1995-02-03 21:47:48 +00:00
|
|
|
*/
|
2002-09-03 00:06:58 +00:00
|
|
|
#define CLK_TCK 128
|
1995-02-03 21:47:48 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Frequency of the clock ticks reported by clock(). */
|
2002-09-03 00:06:58 +00:00
|
|
|
#define CLOCKS_PER_SEC 128
|
1995-02-03 21:47:48 +00:00
|
|
|
|
2002-08-21 16:20:02 +00:00
|
|
|
#ifndef _CLOCK_T_DECLARED
|
|
|
|
typedef __clock_t clock_t;
|
|
|
|
#define _CLOCK_T_DECLARED
|
1994-05-24 09:57:34 +00:00
|
|
|
#endif
|
|
|
|
|
2002-08-21 16:20:02 +00:00
|
|
|
#ifndef _TIME_T_DECLARED
|
|
|
|
typedef __time_t time_t;
|
|
|
|
#define _TIME_T_DECLARED
|
1994-05-24 09:57:34 +00:00
|
|
|
#endif
|
|
|
|
|
2002-08-21 16:20:02 +00:00
|
|
|
#ifndef _SIZE_T_DECLARED
|
|
|
|
typedef __size_t size_t;
|
|
|
|
#define _SIZE_T_DECLARED
|
1997-05-13 09:33:24 +00:00
|
|
|
#endif
|
|
|
|
|
2002-06-15 23:35:37 +00:00
|
|
|
#if __POSIX_VISIBLE >= 199309
|
1997-05-13 09:33:24 +00:00
|
|
|
/*
|
|
|
|
* New in POSIX 1003.1b-1993.
|
|
|
|
*/
|
2002-08-21 16:20:02 +00:00
|
|
|
#ifndef _CLOCKID_T_DECLARED
|
|
|
|
typedef __clockid_t clockid_t;
|
|
|
|
#define _CLOCKID_T_DECLARED
|
1997-05-13 09:25:03 +00:00
|
|
|
#endif
|
|
|
|
|
2002-08-21 16:20:02 +00:00
|
|
|
#ifndef _TIMER_T_DECLARED
|
|
|
|
typedef __timer_t timer_t;
|
|
|
|
#define _TIMER_T_DECLARED
|
1994-05-24 09:57:34 +00:00
|
|
|
#endif
|
|
|
|
|
2002-06-15 23:35:37 +00:00
|
|
|
#include <sys/timespec.h>
|
|
|
|
#endif /* __POSIX_VISIBLE >= 199309 */
|
1997-05-13 09:33:24 +00:00
|
|
|
|
2012-09-10 05:00:29 +00:00
|
|
|
#if __POSIX_VISIBLE >= 200112
|
|
|
|
#ifndef _PID_T_DECLARED
|
|
|
|
typedef __pid_t pid_t;
|
|
|
|
#define _PID_T_DECLARED
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2005-04-02 12:33:27 +00:00
|
|
|
/* These macros are also in sys/time.h. */
|
|
|
|
#if !defined(CLOCK_REALTIME) && __POSIX_VISIBLE >= 200112
|
|
|
|
#define CLOCK_REALTIME 0
|
|
|
|
#ifdef __BSD_VISIBLE
|
|
|
|
#define CLOCK_VIRTUAL 1
|
|
|
|
#define CLOCK_PROF 2
|
|
|
|
#endif
|
|
|
|
#define CLOCK_MONOTONIC 4
|
2006-04-15 03:08:55 +00:00
|
|
|
#define CLOCK_UPTIME 5 /* FreeBSD-specific. */
|
|
|
|
#define CLOCK_UPTIME_PRECISE 7 /* FreeBSD-specific. */
|
|
|
|
#define CLOCK_UPTIME_FAST 8 /* FreeBSD-specific. */
|
|
|
|
#define CLOCK_REALTIME_PRECISE 9 /* FreeBSD-specific. */
|
|
|
|
#define CLOCK_REALTIME_FAST 10 /* FreeBSD-specific. */
|
|
|
|
#define CLOCK_MONOTONIC_PRECISE 11 /* FreeBSD-specific. */
|
|
|
|
#define CLOCK_MONOTONIC_FAST 12 /* FreeBSD-specific. */
|
|
|
|
#define CLOCK_SECOND 13 /* FreeBSD-specific. */
|
2008-03-22 09:59:20 +00:00
|
|
|
#define CLOCK_THREAD_CPUTIME_ID 14
|
2013-01-14 18:01:19 +00:00
|
|
|
#define CLOCK_PROCESS_CPUTIME_ID 15
|
2005-04-02 12:33:27 +00:00
|
|
|
#endif /* !defined(CLOCK_REALTIME) && __POSIX_VISIBLE >= 200112 */
|
|
|
|
|
|
|
|
#if !defined(TIMER_ABSTIME) && __POSIX_VISIBLE >= 200112
|
|
|
|
#if __BSD_VISIBLE
|
|
|
|
#define TIMER_RELTIME 0x0 /* relative timer */
|
|
|
|
#endif
|
|
|
|
#define TIMER_ABSTIME 0x1 /* absolute timer */
|
|
|
|
#endif /* !defined(TIMER_ABSTIME) && __POSIX_VISIBLE >= 200112 */
|
|
|
|
|
1994-05-24 09:57:34 +00:00
|
|
|
struct tm {
|
|
|
|
int tm_sec; /* seconds after the minute [0-60] */
|
|
|
|
int tm_min; /* minutes after the hour [0-59] */
|
|
|
|
int tm_hour; /* hours since midnight [0-23] */
|
|
|
|
int tm_mday; /* day of the month [1-31] */
|
|
|
|
int tm_mon; /* months since January [0-11] */
|
|
|
|
int tm_year; /* years since 1900 */
|
|
|
|
int tm_wday; /* days since Sunday [0-6] */
|
|
|
|
int tm_yday; /* days since January 1 [0-365] */
|
|
|
|
int tm_isdst; /* Daylight Savings Time flag */
|
2001-03-31 07:24:35 +00:00
|
|
|
long tm_gmtoff; /* offset from UTC in seconds */
|
1994-05-24 09:57:34 +00:00
|
|
|
char *tm_zone; /* timezone abbreviation */
|
|
|
|
};
|
|
|
|
|
2002-06-15 23:35:37 +00:00
|
|
|
#if __POSIX_VISIBLE
|
1998-08-21 01:21:26 +00:00
|
|
|
extern char *tzname[];
|
|
|
|
#endif
|
|
|
|
|
1994-05-24 09:57:34 +00:00
|
|
|
__BEGIN_DECLS
|
2002-03-23 17:24:55 +00:00
|
|
|
char *asctime(const struct tm *);
|
|
|
|
clock_t clock(void);
|
|
|
|
char *ctime(const time_t *);
|
|
|
|
double difftime(time_t, time_t);
|
2005-04-02 12:33:27 +00:00
|
|
|
/* XXX missing: getdate() */
|
2002-03-23 17:24:55 +00:00
|
|
|
struct tm *gmtime(const time_t *);
|
|
|
|
struct tm *localtime(const time_t *);
|
|
|
|
time_t mktime(struct tm *);
|
2002-09-06 11:24:06 +00:00
|
|
|
size_t strftime(char * __restrict, size_t, const char * __restrict,
|
|
|
|
const struct tm * __restrict);
|
2002-03-23 17:24:55 +00:00
|
|
|
time_t time(time_t *);
|
2005-10-30 03:15:05 +00:00
|
|
|
#if __POSIX_VISIBLE >= 200112
|
|
|
|
struct sigevent;
|
|
|
|
int timer_create(clockid_t, struct sigevent *__restrict, timer_t *__restrict);
|
|
|
|
int timer_delete(timer_t);
|
|
|
|
int timer_gettime(timer_t, struct itimerspec *);
|
|
|
|
int timer_getoverrun(timer_t);
|
|
|
|
int timer_settime(timer_t, int, const struct itimerspec *__restrict,
|
|
|
|
struct itimerspec *__restrict);
|
|
|
|
#endif
|
2002-06-15 23:35:37 +00:00
|
|
|
#if __POSIX_VISIBLE
|
2002-03-23 17:24:55 +00:00
|
|
|
void tzset(void);
|
2002-06-15 23:35:37 +00:00
|
|
|
#endif
|
|
|
|
|
2002-06-27 18:40:51 +00:00
|
|
|
#if __POSIX_VISIBLE >= 199309
|
|
|
|
int clock_getres(clockid_t, struct timespec *);
|
|
|
|
int clock_gettime(clockid_t, struct timespec *);
|
|
|
|
int clock_settime(clockid_t, const struct timespec *);
|
2005-04-02 12:33:27 +00:00
|
|
|
/* XXX missing: clock_nanosleep() */
|
2002-06-27 18:40:51 +00:00
|
|
|
int nanosleep(const struct timespec *, struct timespec *);
|
|
|
|
#endif /* __POSIX_VISIBLE >= 199309 */
|
|
|
|
|
2012-09-10 05:00:29 +00:00
|
|
|
#if __POSIX_VISIBLE >= 200112
|
|
|
|
int clock_getcpuclockid(pid_t, clockid_t *);
|
|
|
|
#endif
|
|
|
|
|
2002-06-27 20:18:45 +00:00
|
|
|
#if __POSIX_VISIBLE >= 199506
|
|
|
|
char *asctime_r(const struct tm *, char *);
|
|
|
|
char *ctime_r(const time_t *, char *);
|
|
|
|
struct tm *gmtime_r(const time_t *, struct tm *);
|
|
|
|
struct tm *localtime_r(const time_t *, struct tm *);
|
|
|
|
#endif
|
|
|
|
|
2002-06-15 23:35:37 +00:00
|
|
|
#if __XSI_VISIBLE
|
2002-09-06 11:24:06 +00:00
|
|
|
char *strptime(const char * __restrict, const char * __restrict,
|
|
|
|
struct tm * __restrict);
|
2002-06-15 23:35:37 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if __BSD_VISIBLE
|
2005-04-02 12:33:27 +00:00
|
|
|
char *timezone(int, int); /* XXX XSI conflict */
|
2002-03-23 17:24:55 +00:00
|
|
|
void tzsetwall(void);
|
|
|
|
time_t timelocal(struct tm * const);
|
|
|
|
time_t timegm(struct tm * const);
|
2016-10-02 17:02:59 +00:00
|
|
|
int timer_oshandle_np(timer_t timerid);
|
2002-06-15 23:35:37 +00:00
|
|
|
#endif /* __BSD_VISIBLE */
|
2012-03-04 15:31:13 +00:00
|
|
|
|
2012-03-28 12:11:54 +00:00
|
|
|
#if __POSIX_VISIBLE >= 200809 || defined(_XLOCALE_H_)
|
2012-03-04 15:31:13 +00:00
|
|
|
#include <xlocale/_time.h>
|
|
|
|
#endif
|
1994-05-24 09:57:34 +00:00
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif /* !_TIME_H_ */
|