Toggle navigation
Documentation
The friendly Operating System for the Internet of Things
Main Page
Related Pages
Supported Boards
Modules
Namespaces
Namespace List
Namespace Members
All
Functions
Variables
Enumerations
Data Structures
Data Structures
Class Hierarchy
Data Fields
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
w
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
Enumerator
Related Symbols
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
_
a
b
c
d
e
f
g
h
i
k
l
m
n
p
q
r
s
t
u
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
▼
RIOT OS
►
RIOT Documentation
mutex.doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
RIOT Vision
►
Governance of the RIOT Community
►
Roadmap
►
Code of Conduct Information
►
Creating modules
►
Creating an application
►
Porting boards
►
Writing a Device Driver in RIOT
►
Getting started
►
Flashing via RIOT's Build System
►
Terminal programs configuration
►
Build In Docker
►
Running and creating tests
►
Hints for quicker & better RIOT development
►
Build System Basics
►
List of Features (Features as Build System Enties)
►
Kconfig in RIOT
►
Using C++ in RIOT
►
Using Rust in RIOT
►
Advanced build system tricks
►
Debugging Tools
►
Emulators
►
Release cycle
►
IO-Mapping and Shields
►
Changelog
►
Removed Features and Modules
Deprecated List
Todo List
Supported Boards
►
Modules
►
Namespaces
►
Data Structures
▼
Files
▼
File List
►
boards
►
core
▼
cpu
►
arm7_common
►
arm7tdmi_gba
►
atmega1281
►
atmega1284p
►
atmega128rfa1
►
atmega2560
►
atmega256rfr2
►
atmega328p
►
atmega32u4
►
atmega8
►
atmega_common
►
atxmega
▼
avr8_common
▼
avr_libc_extra
▼
include
▼
sys
time.h
types.h
►
errno.h
►
inttypes.h
►
strings.h
unistd.h
►
include
►
cc2538
►
cc26x0_cc13x0
►
cc26x2_cc13x2
►
cc26xx_cc13xx
►
cortexm_common
►
efm32
►
esp32
►
esp8266
►
esp_common
►
fe310
►
gd32v
►
kinetis
►
lm4f120
►
lpc1768
►
lpc23xx
►
msp430
►
native
►
nrf51
►
nrf52
►
nrf53
►
nrf5x_common
►
nrf9160
►
qn908x
►
riscv_common
►
rpx0xx
►
sam0_common
►
sam3
►
sam4s
►
sam_common
►
samd21
►
samd5x
►
saml1x
►
saml21
►
stm32
►
dist
►
drivers
►
makefiles
►
pkg
►
sys
►
Globals
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
time.h
1
/*
2
* Copyright (C) 2014 Freie Universität Berlin, Hinnerk van Bruinehsen
3
*
4
* This file is subject to the terms and conditions of the GNU Lesser
5
* General Public License v2.1. See the file LICENSE in the top level
6
* directory for more details.
7
*/
8
9
#ifndef SYS_TIME_H
10
#define SYS_TIME_H
11
12
#include <sys/types.h>
13
#include <time.h>
14
15
#ifdef __cplusplus
16
extern
"C"
{
17
#endif
18
23
struct
timeval
{
24
time_t
tv_sec
;
25
suseconds_t
tv_usec
;
26
};
23
struct
timeval
{
…
};
27
28
#ifdef __cplusplus
29
}
30
#endif
31
32
#endif
/* SYS_TIME_H */
timeval
Definition of struct timeval for the atmega.
Definition
time.h:23
timeval::tv_usec
suseconds_t tv_usec
microseconds
Definition
time.h:25
timeval::tv_sec
time_t tv_sec
seconds
Definition
time.h:24
Generated on Thu Apr 3 2025 10:49:39 by
1.12.0