blob: d48e9041e8041bd86f474d3a66537a8e0467ce56 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
// SPDX-License-Identifier: GPL-2.0
//! Kernel async functionality.
use core::{
future::Future,
pin::Pin,
task::{Context, Poll},
};
pub mod executor;
#[cfg(CONFIG_NET)]
pub mod net;
/// Yields execution of the current task so that other tasks may execute.
///
/// The task continues to be in a "runnable" state though, so it will eventually run again.
///
/// # Examples
///
/// ```
/// use kernel::kasync::yield_now;
///
/// async fn example() {
/// pr_info!("Before yield\n");
/// yield_now().await;
/// pr_info!("After yield\n");
/// }
/// ```
pub fn yield_now() -> impl Future<Output = ()> {
struct Yield {
first_poll: bool,
}
impl Future for Yield {
type Output = ();
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<()> {
if !self.first_poll {
Poll::Ready(())
} else {
self.first_poll = false;
cx.waker().wake_by_ref();
Poll::Pending
}
}
}
Yield { first_poll: true }
}
|