@@ -219,11 +219,19 @@ impl Trace {
219
219
220
220
/// Runs the function `f` in tracing mode, and returns its result along with the resulting [`Trace`].
221
221
///
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
227
235
///
228
236
/// Example usage:
229
237
/// ```
@@ -235,12 +243,13 @@ impl Trace {
235
243
/// // some future
236
244
/// let mut test_future = std::pin::pin!(async move { tokio::task::yield_now().await; 0 });
237
245
///
238
- /// // trace it once
246
+ /// // trace it once, see what it's doing
239
247
/// let (trace, res) = Trace::root(std::future::poll_fn(|cx| {
240
248
/// let (res, trace) = Trace::capture(|| test_future.as_mut().poll(cx));
241
249
/// Poll::Ready((trace, res))
242
250
/// })).await;
243
251
///
252
+ /// // await it to let it finish, outside of a `capture`
244
253
/// let output = match res {
245
254
/// Poll::Ready(output) => output,
246
255
/// Poll::Pending => test_future.await,
@@ -254,11 +263,6 @@ impl Trace {
254
263
///
255
264
/// Nested calls to `capture` might return partial traces, but will not do any other undesirable behavior (for
256
265
/// 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`].
262
266
pub fn capture < F , R > ( f : F ) -> ( R , Trace )
263
267
where
264
268
F : FnOnce ( ) -> R ,
0 commit comments