GNU Octave 10.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 
Loading...
Searching...
No Matches
time-wrappers.h
Go to the documentation of this file.
1////////////////////////////////////////////////////////////////////////
2//
3// Copyright (C) 2016-2025 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 long long
41
42extern OCTAVE_API int octave_gettimeofday_wrapper (time_t *sec, long *usec);
43
44extern OCTAVE_API int
45octave_cpu_time (time_t *usr_sec, time_t *sys_sec,
46 long *usr_usec, long *sys_usec);
47
48extern OCTAVE_API int
49octave_getrusage_wrapper (time_t *usr_sec, time_t *sys_sec,
50 long *usr_usec, long *sys_usec,
51 long *maxrss, long *ixrss, long *idrss,
52 long *isrss, long *minflt, long *majflt,
53 long *nswap, long *inblock, long *oublock,
54 long *msgsnd, long *msgrcv, long *nsignals,
55 long *nvcsw, long *nivcsw);
56
57extern OCTAVE_API time_t
58octave_mktime_wrapper (struct tm *tp);
59
60#if defined (__cplusplus)
61}
62#endif
63
64#endif
#define OCTAVE_API
Definition main.in.cc:55
int octave_cpu_time(time_t *usr_sec, time_t *sys_sec, long *usr_usec, long *sys_usec)
int octave_gettimeofday_wrapper(time_t *sec, long *usec)
time_t octave_mktime_wrapper(struct tm *tp)
long long octave_gettime_ns_wrapper(void)
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)