GNU Octave 7.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
time-wrappers.h
Go to the documentation of this file.
1////////////////////////////////////////////////////////////////////////
2//
3// Copyright (C) 2016-2022 The Octave Project Developers
4//
5// See the file COPYRIGHT.md in the top-level directory of this
6// distribution or <https://octave.org/copyright/>.
7//
8// This file is part of Octave.
9//
10// Octave is free software: you can redistribute it and/or modify it
11// under the terms of the GNU General Public License as published by
12// the Free Software Foundation, either version 3 of the License, or
13// (at your option) any later version.
14//
15// Octave is distributed in the hope that it will be useful, but
16// WITHOUT ANY WARRANTY; without even the implied warranty of
17// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18// GNU General Public License for more details.
19//
20// You should have received a copy of the GNU General Public License
21// along with Octave; see the file COPYING. If not, see
22// <https://www.gnu.org/licenses/>.
23//
24////////////////////////////////////////////////////////////////////////
25
26#if ! defined (octave_time_wrappers_h)
27#define octave_time_wrappers_h 1
28
29#if defined __cplusplus
30# include <ctime>
31#else
32# include <time.h>
33#endif
34
35#if defined __cplusplus
36extern "C" {
37#endif
38
39extern OCTAVE_API int octave_gettimeofday_wrapper (time_t *sec, long *usec);
40
41extern OCTAVE_API int
42octave_cpu_time (time_t *usr_sec, time_t *sys_sec,
43 long *usr_usec, long *sys_usec);
44
45extern OCTAVE_API int
46octave_getrusage_wrapper (time_t *usr_sec, time_t *sys_sec,
47 long *usr_usec, long *sys_usec,
48 long *maxrss, long *ixrss, long *idrss,
49 long *isrss, long *minflt, long *majflt,
50 long *nswap, long *inblock, long *oublock,
51 long *msgsnd, long *msgrcv, long *nsignals,
52 long *nvcsw, long *nivcsw);
53
54extern OCTAVE_API time_t
55octave_mktime_wrapper (struct tm *tp);
56
57#if defined __cplusplus
58}
59#endif
60
61#endif
#define OCTAVE_API
Definition: main.in.cc:55
OCTAVE_API int octave_cpu_time(time_t *usr_sec, time_t *sys_sec, long *usr_usec, long *sys_usec)
Definition: time-wrappers.c:63
OCTAVE_API int octave_getrusage_wrapper(time_t *usr_sec, time_t *sys_sec, long *usr_usec, long *sys_usec, long *maxrss, long *ixrss, long *idrss, long *isrss, long *minflt, long *majflt, long *nswap, long *inblock, long *oublock, long *msgsnd, long *msgrcv, long *nsignals, long *nvcsw, long *nivcsw)
Definition: time-wrappers.c:91
OCTAVE_API int octave_gettimeofday_wrapper(time_t *sec, long *usec)
Definition: time-wrappers.c:42
OCTAVE_API time_t octave_mktime_wrapper(struct tm *tp)