2017-05-23 05:16:08 +00:00
|
|
|
/* -*-comment-start: "//";comment-end:""-*-
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes --- Maxwell Equations of Software
|
2022-11-14 04:25:55 +00:00
|
|
|
* Copyright © 2017,2022 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2017-05-23 05:16:08 +00:00
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* This file is part of GNU Mes.
|
2017-05-23 05:16:08 +00:00
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes is free software; you can redistribute it and/or modify it
|
2017-05-23 05:16:08 +00:00
|
|
|
* under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes is distributed in the hope that it will be useful, but
|
2017-05-23 05:16:08 +00:00
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2018-07-22 12:24:36 +00:00
|
|
|
* along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
2017-05-23 05:16:08 +00:00
|
|
|
*/
|
|
|
|
#ifndef __MES_TIME_H
|
|
|
|
#define __MES_TIME_H 1
|
|
|
|
|
2019-05-29 14:15:12 +00:00
|
|
|
#if SYSTEM_LIBC
|
2017-07-23 13:49:03 +00:00
|
|
|
#undef __MES_TIME_H
|
2017-05-23 05:16:08 +00:00
|
|
|
#include_next <time.h>
|
2019-05-29 14:15:12 +00:00
|
|
|
#else // ! SYSTEM_LIBC
|
2018-06-03 16:54:26 +00:00
|
|
|
|
|
|
|
#ifndef __MES_TIME_T
|
|
|
|
#define __MES_TIME_T 1
|
2022-11-14 04:25:55 +00:00
|
|
|
typedef long clockid_t;
|
|
|
|
typedef long time_t;
|
2018-06-03 16:54:26 +00:00
|
|
|
#endif
|
2017-07-22 07:22:11 +00:00
|
|
|
|
2019-05-18 11:27:42 +00:00
|
|
|
struct tm
|
|
|
|
{
|
2018-06-03 16:54:26 +00:00
|
|
|
int tm_sec;
|
|
|
|
int tm_min;
|
|
|
|
int tm_hour;
|
|
|
|
int tm_mday;
|
|
|
|
int tm_mon;
|
|
|
|
int tm_year;
|
|
|
|
int tm_wday;
|
|
|
|
int tm_yday;
|
|
|
|
int tm_isdst;
|
2017-07-22 07:22:11 +00:00
|
|
|
};
|
2017-07-24 11:25:54 +00:00
|
|
|
|
2018-05-27 08:28:30 +00:00
|
|
|
#ifndef __MES_STRUCT_TIMESPEC
|
|
|
|
#define __MES_STRUCT_TIMESPEC
|
|
|
|
|
|
|
|
struct timespec
|
|
|
|
{
|
2018-06-02 09:41:06 +00:00
|
|
|
long tv_sec;
|
2018-05-27 08:28:30 +00:00
|
|
|
long tv_nsec;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __MES_STRUCT_TIMESPEC
|
|
|
|
|
2018-10-20 12:18:04 +00:00
|
|
|
#define CLOCK_PROCESS_CPUTIME_ID 2
|
2018-08-26 22:34:13 +00:00
|
|
|
int clock_gettime (clockid_t clk_id, struct timespec *tp);
|
|
|
|
struct tm *localtime (time_t const *timep);
|
|
|
|
struct tm *gmtime (time_t const *time);
|
2019-08-24 17:05:58 +00:00
|
|
|
time_t mktime (struct tm *broken_time);
|
2019-06-25 17:05:58 +00:00
|
|
|
int nanosleep (struct timespec const *requested_time, struct timespec const *remaining);
|
2019-05-18 11:27:42 +00:00
|
|
|
time_t time (time_t * tloc);
|
2018-08-26 22:34:13 +00:00
|
|
|
|
2019-05-29 14:15:12 +00:00
|
|
|
#endif // ! SYSTEM_LIBC
|
2017-05-23 05:16:08 +00:00
|
|
|
|
|
|
|
#endif // __MES_TIME_H
|