Skip to content

Commit 03b481a

Browse files
author
Ariel Ben-Yehuda
committed
more documentation
1 parent 1c6c605 commit 03b481a

File tree

2 files changed

+18
-11
lines changed

2 files changed

+18
-11
lines changed

tokio/src/runtime/dump.rs

+15-11
Original file line numberDiff line numberDiff line change
@@ -219,11 +219,19 @@ impl Trace {
219219

220220
/// Runs the function `f` in tracing mode, and returns its result along with the resulting [`Trace`].
221221
///
222-
/// The passed-in function is normally a poll function. Due to the way tracing is implemented,
223-
/// Tokio leaf futures might, instead of doing their actual work, do the equivalent of a
224-
/// `yield_now` (returning a `Poll::Pending` and scheduling the current context for execution),
225-
/// which means forward progress is only guaranteed if you eventually call your future outside of
226-
/// `capture`.
222+
/// This is normally called with `f` being the poll function of a future, and will give you a backtrace
223+
/// that tells you what that one future is doing.
224+
///
225+
/// Use [`Handle::dump`] instead if you want to know what *all the tasks* in your program are doing.
226+
/// Also see [`Handle::dump`] for more documentation about dumps, but unlike [`Handle::dump`], this function
227+
/// should not be much slower than calling `f` directly.
228+
///
229+
/// Due to the way tracing is implemented, Tokio leaf futures will usually, instead of doing their
230+
/// actual work, do the equivalent of a `yield_now` (returning a `Poll::Pending` and scheduling the
231+
/// current context for execution), which means forward progress will probably not happen unless
232+
/// you eventually call your future outside of `capture`.
233+
///
234+
/// [`Handle::dump`]: crate::runtime::Handle::dump
227235
///
228236
/// Example usage:
229237
/// ```
@@ -235,12 +243,13 @@ impl Trace {
235243
/// // some future
236244
/// let mut test_future = std::pin::pin!(async move { tokio::task::yield_now().await; 0 });
237245
///
238-
/// // trace it once
246+
/// // trace it once, see what it's doing
239247
/// let (trace, res) = Trace::root(std::future::poll_fn(|cx| {
240248
/// let (res, trace) = Trace::capture(|| test_future.as_mut().poll(cx));
241249
/// Poll::Ready((trace, res))
242250
/// })).await;
243251
///
252+
/// // await it to let it finish, outside of a `capture`
244253
/// let output = match res {
245254
/// Poll::Ready(output) => output,
246255
/// Poll::Pending => test_future.await,
@@ -254,11 +263,6 @@ impl Trace {
254263
///
255264
/// Nested calls to `capture` might return partial traces, but will not do any other undesirable behavior (for
256265
/// example, they will not panic).
257-
///
258-
/// ### Unstable Implementation Details
259-
///
260-
/// When run in tracing mode, Tokio leaf futures will return `Poll::Pending` and emit a stack trace
261-
/// that will be captured in the returning [`Trace`].
262266
pub fn capture<F, R>(f: F) -> (R, Trace)
263267
where
264268
F: FnOnce() -> R,

tokio/src/runtime/handle.rs

+3
Original file line numberDiff line numberDiff line change
@@ -447,6 +447,9 @@ cfg_taskdump! {
447447
impl Handle {
448448
/// Captures a snapshot of the runtime's state.
449449
///
450+
/// If you only want to capture a snapshot of a single future's state, you can use
451+
/// [`Trace::capture`][crate::runtime::dump::Trace].
452+
///
450453
/// This functionality is experimental, and comes with a number of
451454
/// requirements and limitations.
452455
///

0 commit comments

Comments
 (0)