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
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
dpl_mutex.h
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2020 Inria
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
20
#ifndef DPL_DPL_MUTEX_H
21
#define DPL_DPL_MUTEX_H
22
23
#include "os/os_mutex.h"
24
25
#ifdef __cplusplus
26
extern
"C"
{
27
#endif
28
32
struct
dpl_mutex
{
33
struct
os_mutex
mu
;
34
};
32
struct
dpl_mutex
{
…
};
35
41
static
inline
dpl_error_t
dpl_mutex_init
(
struct
dpl_mutex
*mu)
42
{
43
return
(
dpl_error_t
) os_mutex_init(&mu->
mu
);
44
}
41
static
inline
dpl_error_t
dpl_mutex_init
(
struct
dpl_mutex
*mu) {
…
}
45
58
static
inline
dpl_error_t
dpl_mutex_pend
(
struct
dpl_mutex
*mu,
dpl_time_t
timeout)
59
{
60
return
(
dpl_error_t
) os_mutex_pend(&mu->
mu
, timeout);
61
}
58
static
inline
dpl_error_t
dpl_mutex_pend
(
struct
dpl_mutex
*mu,
dpl_time_t
timeout) {
…
}
62
71
static
inline
dpl_error_t
dpl_mutex_release
(
struct
dpl_mutex
*mu)
72
{
73
return
(
dpl_error_t
) os_mutex_release(&mu->
mu
);
74
}
71
static
inline
dpl_error_t
dpl_mutex_release
(
struct
dpl_mutex
*mu) {
…
}
75
76
#ifdef __cplusplus
77
}
78
#endif
79
80
#endif
/* DPL_DPL_MUTEX_H */
dpl_error_t
os_error_t dpl_error_t
dpl error type
Definition
dpl_error.h:51
dpl_mutex_release
static dpl_error_t dpl_mutex_release(struct dpl_mutex *mu)
Release a mutex.
Definition
dpl_mutex.h:71
dpl_mutex_pend
static dpl_error_t dpl_mutex_pend(struct dpl_mutex *mu, dpl_time_t timeout)
Pend (wait) for a mutex.
Definition
dpl_mutex.h:58
dpl_mutex_init
static dpl_error_t dpl_mutex_init(struct dpl_mutex *mu)
Initializes a mutex object.
Definition
dpl_mutex.h:41
dpl_time_t
os_time_t dpl_time_t
dpl time type
Definition
dpl_types.h:57
dpl_mutex
dpl mutex wrapper
Definition
dpl_mutex.h:32
dpl_mutex::mu
struct os_mutex mu
the mutex
Definition
dpl_mutex.h:33
Generated on Thu Apr 3 2025 15:28:53 by
1.12.0