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
thread_arch.h
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2021 Koen Zandberg <koen@bergzand.net>
3
* 2021 Inria
4
*
5
* This file is subject to the terms and conditions of the GNU Lesser General
6
* Public License v2.1. See the file LICENSE in the top level directory for more
7
* details.
8
*/
9
20
#ifndef THREAD_ARCH_H
21
#define THREAD_ARCH_H
22
23
#include "cpu_conf.h"
24
25
#ifdef __cplusplus
26
extern
"C"
{
27
#endif
28
29
#define THREAD_API_INLINED
30
31
#ifndef DOXYGEN
/* Doxygen is in core/include/thread.h */
32
33
static
inline
__attribute__((always_inline))
void
thread_yield_higher
(
void
)
34
{
35
/* trigger the PENDSV interrupt to run scheduler and schedule new thread if
36
* applicable */
37
SCB->ICSR = SCB_ICSR_PENDSVSET_Msk;
38
/* flush the pipeline. Otherwise we risk that subsequent instructions are
39
* executed before the IRQ has actually triggered */
40
__ISB();
41
}
42
43
#endif
/* DOXYGEN */
44
45
#ifdef __cplusplus
46
}
47
#endif
48
49
#endif
/* THREAD_ARCH_H */
thread_yield_higher
THREAD_MAYBE_INLINE void thread_yield_higher(void)
Lets current thread yield in favor of a higher prioritized thread.
Generated on Thu Apr 3 2025 00:20:45 by
1.12.0