Coverage Report

Created: 2026-03-31 07:04

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/rust/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.50.0/src/runtime/mod.rs
Line
Count
Source
1
//! The Tokio runtime.
2
//!
3
//! Unlike other Rust programs, asynchronous applications require runtime
4
//! support. In particular, the following runtime services are necessary:
5
//!
6
//! * An **I/O event loop**, called the driver, which drives I/O resources and
7
//!   dispatches I/O events to tasks that depend on them.
8
//! * A **scheduler** to execute [tasks] that use these I/O resources.
9
//! * A **timer** for scheduling work to run after a set period of time.
10
//!
11
//! Tokio's [`Runtime`] bundles all of these services as a single type, allowing
12
//! them to be started, shut down, and configured together. However, often it is
13
//! not required to configure a [`Runtime`] manually, and a user may just use the
14
//! [`tokio::main`] attribute macro, which creates a [`Runtime`] under the hood.
15
//!
16
//! # Choose your runtime
17
//!
18
//! Here is the rules of thumb to choose the right runtime for your application.
19
//!
20
//! ```plaintext
21
//!    +------------------------------------------------------+
22
//!    | Do you want work-stealing or multi-thread scheduler? |
23
//!    +------------------------------------------------------+
24
//!                    | Yes              | No
25
//!                    |                  |
26
//!                    |                  |
27
//!                    v                  |
28
//!      +------------------------+       |
29
//!      | Multi-threaded Runtime |       |
30
//!      +------------------------+       |
31
//!                                       |
32
//!                                       V
33
//!                      +--------------------------------+
34
//!                      | Do you execute `!Send` Future? |
35
//!                      +--------------------------------+
36
//!                            | Yes                 | No
37
//!                            |                     |
38
//!                            V                     |
39
//!              +--------------------------+        |
40
//!              | Local Runtime (unstable) |        |
41
//!              +--------------------------+        |
42
//!                                                  |
43
//!                                                  v
44
//!                                      +------------------------+
45
//!                                      | Current-thread Runtime |
46
//!                                      +------------------------+
47
//! ```
48
//!
49
//! The above decision tree is not exhaustive. there are other factors that
50
//! may influence your decision.
51
//!
52
//! ## Bridging with sync code
53
//!
54
//! See <https://tokio.rs/tokio/topics/bridging> for details.
55
//!
56
//! ## NUMA awareness
57
//!
58
//! The tokio runtime is not NUMA (Non-Uniform Memory Access) aware.
59
//! You may want to start multiple runtimes instead of a single runtime
60
//! for better performance on NUMA systems.
61
//!
62
//! # Usage
63
//!
64
//! When no fine tuning is required, the [`tokio::main`] attribute macro can be
65
//! used.
66
//!
67
//! ```no_run
68
//! # #[cfg(not(target_family = "wasm"))]
69
//! # {
70
//! use tokio::net::TcpListener;
71
//! use tokio::io::{AsyncReadExt, AsyncWriteExt};
72
//!
73
//! #[tokio::main]
74
//! async fn main() -> Result<(), Box<dyn std::error::Error>> {
75
//!     let listener = TcpListener::bind("127.0.0.1:8080").await?;
76
//!
77
//!     loop {
78
//!         let (mut socket, _) = listener.accept().await?;
79
//!
80
//!         tokio::spawn(async move {
81
//!             let mut buf = [0; 1024];
82
//!
83
//!             // In a loop, read data from the socket and write the data back.
84
//!             loop {
85
//!                 let n = match socket.read(&mut buf).await {
86
//!                     // socket closed
87
//!                     Ok(0) => return,
88
//!                     Ok(n) => n,
89
//!                     Err(e) => {
90
//!                         println!("failed to read from socket; err = {:?}", e);
91
//!                         return;
92
//!                     }
93
//!                 };
94
//!
95
//!                 // Write the data back
96
//!                 if let Err(e) = socket.write_all(&buf[0..n]).await {
97
//!                     println!("failed to write to socket; err = {:?}", e);
98
//!                     return;
99
//!                 }
100
//!             }
101
//!         });
102
//!     }
103
//! }
104
//! # }
105
//! ```
106
//!
107
//! From within the context of the runtime, additional tasks are spawned using
108
//! the [`tokio::spawn`] function. Futures spawned using this function will be
109
//! executed on the same thread pool used by the [`Runtime`].
110
//!
111
//! A [`Runtime`] instance can also be used directly.
112
//!
113
//! ```no_run
114
//! # #[cfg(not(target_family = "wasm"))]
115
//! # {
116
//! use tokio::net::TcpListener;
117
//! use tokio::io::{AsyncReadExt, AsyncWriteExt};
118
//! use tokio::runtime::Runtime;
119
//!
120
//! fn main() -> Result<(), Box<dyn std::error::Error>> {
121
//!     // Create the runtime
122
//!     let rt  = Runtime::new()?;
123
//!
124
//!     // Spawn the root task
125
//!     rt.block_on(async {
126
//!         let listener = TcpListener::bind("127.0.0.1:8080").await?;
127
//!
128
//!         loop {
129
//!             let (mut socket, _) = listener.accept().await?;
130
//!
131
//!             tokio::spawn(async move {
132
//!                 let mut buf = [0; 1024];
133
//!
134
//!                 // In a loop, read data from the socket and write the data back.
135
//!                 loop {
136
//!                     let n = match socket.read(&mut buf).await {
137
//!                         // socket closed
138
//!                         Ok(0) => return,
139
//!                         Ok(n) => n,
140
//!                         Err(e) => {
141
//!                             println!("failed to read from socket; err = {:?}", e);
142
//!                             return;
143
//!                         }
144
//!                     };
145
//!
146
//!                     // Write the data back
147
//!                     if let Err(e) = socket.write_all(&buf[0..n]).await {
148
//!                         println!("failed to write to socket; err = {:?}", e);
149
//!                         return;
150
//!                     }
151
//!                 }
152
//!             });
153
//!         }
154
//!     })
155
//! }
156
//! # }
157
//! ```
158
//!
159
//! ## Runtime Configurations
160
//!
161
//! Tokio provides multiple task scheduling strategies, suitable for different
162
//! applications. The [runtime builder] or `#[tokio::main]` attribute may be
163
//! used to select which scheduler to use.
164
//!
165
//! #### Multi-Thread Scheduler
166
//!
167
//! The multi-thread scheduler executes futures on a _thread pool_, using a
168
//! work-stealing strategy. By default, it will start a worker thread for each
169
//! CPU core available on the system. This tends to be the ideal configuration
170
//! for most applications. The multi-thread scheduler requires the `rt-multi-thread`
171
//! feature flag, and is selected by default:
172
//! ```
173
//! # #[cfg(not(target_family = "wasm"))]
174
//! # {
175
//! use tokio::runtime;
176
//!
177
//! # fn main() -> Result<(), Box<dyn std::error::Error>> {
178
//! let threaded_rt = runtime::Runtime::new()?;
179
//! # Ok(()) }
180
//! # }
181
//! ```
182
//!
183
//! Most applications should use the multi-thread scheduler, except in some
184
//! niche use-cases, such as when running only a single thread is required.
185
//!
186
//! #### Current-Thread Scheduler
187
//!
188
//! The current-thread scheduler provides a _single-threaded_ future executor.
189
//! All tasks will be created and executed on the current thread. This requires
190
//! the `rt` feature flag.
191
//! ```
192
//! use tokio::runtime;
193
//!
194
//! # fn main() -> Result<(), Box<dyn std::error::Error>> {
195
//! let rt = runtime::Builder::new_current_thread()
196
//!     .build()?;
197
//! # Ok(()) }
198
//! ```
199
//!
200
//! #### Resource drivers
201
//!
202
//! When configuring a runtime by hand, no resource drivers are enabled by
203
//! default. In this case, attempting to use networking types or time types will
204
//! fail. In order to enable these types, the resource drivers must be enabled.
205
//! This is done with [`Builder::enable_io`] and [`Builder::enable_time`]. As a
206
//! shorthand, [`Builder::enable_all`] enables both resource drivers.
207
//!
208
//! ## Driving the runtime
209
//!
210
//! A Tokio runtime can only execute tasks if the runtime is running. Normally
211
//! this is not an issue as the default configuration of a runtime is always running,
212
//! but alternate configurations such as the current-thread runtime require that
213
//! [`Runtime::block_on`] is called.
214
//!
215
//! - A multi-threaded runtime is always running because it spawns its own worker
216
//!   threads.
217
//! - A current-thread runtime does not spawn any worker threads, so it can only
218
//!   execute tasks when you provide a thread by calling [`Runtime::block_on`].
219
//! - A [`LocalSet`](crate::task::LocalSet) only executes local tasks spawned on
220
//!   it when the `LocalSet` is `.awaited` or otherwise driven using one of its
221
//!   methods for this purpose.
222
//!
223
//! Please be aware that [`Handle::block_on`] does not drive the runtime.
224
//! There must be at least one call to [`Runtime::block_on`] when using the current
225
//! thread runtime. [`Handle::block_on`] is not enough.
226
//!
227
//! ## Lifetime of spawned threads
228
//!
229
//! The runtime may spawn threads depending on its configuration and usage. The
230
//! multi-thread scheduler spawns threads to schedule tasks and for `spawn_blocking`
231
//! calls.
232
//!
233
//! While the `Runtime` is active, threads may shut down after periods of being
234
//! idle. Once `Runtime` is dropped, all runtime threads have usually been
235
//! terminated, but in the presence of unstoppable spawned work are not
236
//! guaranteed to have been terminated. See the
237
//! [struct level documentation](Runtime#shutdown) for more details.
238
//!
239
//! [tasks]: crate::task
240
//! [`Runtime`]: Runtime
241
//! [`tokio::spawn`]: crate::spawn
242
//! [`tokio::main`]: ../attr.main.html
243
//! [runtime builder]: crate::runtime::Builder
244
//! [`Runtime::new`]: crate::runtime::Runtime::new
245
//! [`Builder::enable_io`]: crate::runtime::Builder::enable_io
246
//! [`Builder::enable_time`]: crate::runtime::Builder::enable_time
247
//! [`Builder::enable_all`]: crate::runtime::Builder::enable_all
248
//!
249
//! # Detailed runtime behavior
250
//!
251
//! This section gives more details into how the Tokio runtime will schedule
252
//! tasks for execution.
253
//!
254
//! At its most basic level, a runtime has a collection of tasks that need to be
255
//! scheduled. It will repeatedly remove a task from that collection and
256
//! schedule it (by calling [`poll`]). When the collection is empty, the thread
257
//! will go to sleep until a task is added to the collection.
258
//!
259
//! However, the above is not sufficient to guarantee a well-behaved runtime.
260
//! For example, the runtime might have a single task that is always ready to be
261
//! scheduled, and schedule that task every time. This is a problem because it
262
//! starves other tasks by not scheduling them. To solve this, Tokio provides
263
//! the following fairness guarantee:
264
//!
265
//! > If the total number of tasks does not grow without bound, and no task is
266
//! > [blocking the thread], then it is guaranteed that tasks are scheduled
267
//! > fairly.
268
//!
269
//! Or, more formally:
270
//!
271
//! > Under the following two assumptions:
272
//! >
273
//! > * There is some number `MAX_TASKS` such that the total number of tasks on
274
//! >   the runtime at any specific point in time never exceeds `MAX_TASKS`.
275
//! > * There is some number `MAX_SCHEDULE` such that calling [`poll`] on any
276
//! >   task spawned on the runtime returns within `MAX_SCHEDULE` time units.
277
//! >
278
//! > Then, there is some number `MAX_DELAY` such that when a task is woken, it
279
//! > will be scheduled by the runtime within `MAX_DELAY` time units.
280
//!
281
//! (Here, `MAX_TASKS` and `MAX_SCHEDULE` can be any number and the user of
282
//! the runtime may choose them. The `MAX_DELAY` number is controlled by the
283
//! runtime, and depends on the value of `MAX_TASKS` and `MAX_SCHEDULE`.)
284
//!
285
//! Other than the above fairness guarantee, there is no guarantee about the
286
//! order in which tasks are scheduled. There is also no guarantee that the
287
//! runtime is equally fair to all tasks. For example, if the runtime has two
288
//! tasks A and B that are both ready, then the runtime may schedule A five
289
//! times before it schedules B. This is the case even if A yields using
290
//! [`yield_now`]. All that is guaranteed is that it will schedule B eventually.
291
//!
292
//! Normally, tasks are scheduled only if they have been woken by calling
293
//! [`wake`] on their waker. However, this is not guaranteed, and Tokio may
294
//! schedule tasks that have not been woken under some circumstances. This is
295
//! called a spurious wakeup.
296
//!
297
//! ## IO and timers
298
//!
299
//! Beyond just scheduling tasks, the runtime must also manage IO resources and
300
//! timers. It does this by periodically checking whether there are any IO
301
//! resources or timers that are ready, and waking the relevant task so that
302
//! it will be scheduled.
303
//!
304
//! These checks are performed periodically between scheduling tasks. Under the
305
//! same assumptions as the previous fairness guarantee, Tokio guarantees that
306
//! it will wake tasks with an IO or timer event within some maximum number of
307
//! time units.
308
//!
309
//! ## Current thread runtime (behavior at the time of writing)
310
//!
311
//! This section describes how the [current thread runtime] behaves today. This
312
//! behavior may change in future versions of Tokio.
313
//!
314
//! The current thread runtime maintains two FIFO queues of tasks that are ready
315
//! to be scheduled: the global queue and the local queue. The runtime will prefer
316
//! to choose the next task to schedule from the local queue, and will only pick a
317
//! task from the global queue if the local queue is empty, or if it has picked
318
//! a task from the local queue 31 times in a row. The number 31 can be
319
//! changed using the [`global_queue_interval`] setting.
320
//!
321
//! The runtime will check for new IO or timer events whenever there are no
322
//! tasks ready to be scheduled, or when it has scheduled 61 tasks in a row. The
323
//! number 61 may be changed using the [`event_interval`] setting.
324
//!
325
//! When a task is woken from within a task running on the runtime, then the
326
//! woken task is added directly to the local queue. Otherwise, the task is
327
//! added to the global queue. The current thread runtime does not use [the lifo
328
//! slot optimization].
329
//!
330
//! ## Multi threaded runtime (behavior at the time of writing)
331
//!
332
//! This section describes how the [multi thread runtime] behaves today. This
333
//! behavior may change in future versions of Tokio.
334
//!
335
//! A multi thread runtime has a fixed number of worker threads, which are all
336
//! created on startup. The multi thread runtime maintains one global queue, and
337
//! a local queue for each worker thread. The local queue of a worker thread can
338
//! fit at most 256 tasks. If more than 256 tasks are added to the local queue,
339
//! then half of them are moved to the global queue to make space.
340
//!
341
//! The runtime will prefer to choose the next task to schedule from the local
342
//! queue, and will only pick a task from the global queue if the local queue is
343
//! empty, or if it has picked a task from the local queue
344
//! [`global_queue_interval`] times in a row. If the value of
345
//! [`global_queue_interval`] is not explicitly set using the runtime builder,
346
//! then the runtime will dynamically compute it using a heuristic that targets
347
//! 10ms intervals between each check of the global queue (based on the
348
//! [`worker_mean_poll_time`] metric).
349
//!
350
//! If both the local queue and global queue is empty, then the worker thread
351
//! will attempt to steal tasks from the local queue of another worker thread.
352
//! Stealing is done by moving half of the tasks in one local queue to another
353
//! local queue.
354
//!
355
//! The runtime will check for new IO or timer events whenever there are no
356
//! tasks ready to be scheduled, or when it has scheduled 61 tasks in a row. The
357
//! number 61 may be changed using the [`event_interval`] setting.
358
//!
359
//! The multi thread runtime uses [the lifo slot optimization]: Whenever a task
360
//! wakes up another task, the other task is added to the worker thread's lifo
361
//! slot instead of being added to a queue. If there was already a task in the
362
//! lifo slot when this happened, then the lifo slot is replaced, and the task
363
//! that used to be in the lifo slot is placed in the thread's local queue.
364
//! When the runtime finishes scheduling a task, it will schedule the task in
365
//! the lifo slot immediately, if any. When the lifo slot is used, the [coop
366
//! budget] is not reset. Furthermore, if a worker thread uses the lifo slot
367
//! three times in a row, it is temporarily disabled until the worker thread has
368
//! scheduled a task that didn't come from the lifo slot. The lifo slot can be
369
//! disabled using the [`disable_lifo_slot`] setting. The lifo slot is separate
370
//! from the local queue, so other worker threads cannot steal the task in the
371
//! lifo slot.
372
//!
373
//! When a task is woken from a thread that is not a worker thread, then the
374
//! task is placed in the global queue.
375
//!
376
//! [`poll`]: std::future::Future::poll
377
//! [`wake`]: std::task::Waker::wake
378
//! [`yield_now`]: crate::task::yield_now
379
//! [blocking the thread]: https://ryhl.io/blog/async-what-is-blocking/
380
//! [current thread runtime]: crate::runtime::Builder::new_current_thread
381
//! [multi thread runtime]: crate::runtime::Builder::new_multi_thread
382
//! [`global_queue_interval`]: crate::runtime::Builder::global_queue_interval
383
//! [`event_interval`]: crate::runtime::Builder::event_interval
384
//! [`disable_lifo_slot`]: crate::runtime::Builder::disable_lifo_slot
385
//! [the lifo slot optimization]: crate::runtime::Builder::disable_lifo_slot
386
//! [coop budget]: crate::task::coop#cooperative-scheduling
387
//! [`worker_mean_poll_time`]: crate::runtime::RuntimeMetrics::worker_mean_poll_time
388
389
// At the top due to macros
390
#[cfg(test)]
391
#[cfg(not(target_family = "wasm"))]
392
#[macro_use]
393
mod tests;
394
395
pub(crate) mod context;
396
397
pub(crate) mod park;
398
399
pub(crate) mod driver;
400
401
pub(crate) mod scheduler;
402
403
cfg_io_driver_impl! {
404
    pub(crate) mod io;
405
}
406
407
cfg_process_driver! {
408
    mod process;
409
}
410
411
#[cfg_attr(not(feature = "time"), allow(dead_code))]
412
#[derive(Debug, Copy, Clone, PartialEq)]
413
pub(crate) enum TimerFlavor {
414
    Traditional,
415
    #[cfg(all(tokio_unstable, feature = "rt-multi-thread"))]
416
    Alternative,
417
}
418
419
cfg_time! {
420
    pub(crate) mod time;
421
422
    #[cfg(all(tokio_unstable, feature = "rt-multi-thread"))]
423
    pub(crate) mod time_alt;
424
425
    use std::task::{Context, Poll};
426
    use std::pin::Pin;
427
428
    #[derive(Debug)]
429
    pub(crate) enum Timer {
430
        Traditional(time::TimerEntry),
431
432
        #[cfg(all(tokio_unstable, feature = "rt-multi-thread"))]
433
        Alternative(time_alt::Timer),
434
    }
435
436
    impl Timer {
437
        #[track_caller]
438
0
        pub(crate) fn new(
439
0
            handle: crate::runtime::scheduler::Handle,
440
0
            deadline: crate::time::Instant,
441
0
        ) -> Self {
442
0
            match handle.timer_flavor() {
443
                crate::runtime::TimerFlavor::Traditional => {
444
0
                    Timer::Traditional(time::TimerEntry::new(handle, deadline))
445
                }
446
                #[cfg(all(tokio_unstable, feature = "rt-multi-thread"))]
447
                crate::runtime::TimerFlavor::Alternative => {
448
                    Timer::Alternative(time_alt::Timer::new(handle, deadline))
449
                }
450
            }
451
0
        }
452
453
0
        pub(crate) fn deadline(&self) -> crate::time::Instant {
454
0
            match self {
455
0
                Timer::Traditional(entry) => entry.deadline(),
456
                #[cfg(all(tokio_unstable, feature = "rt-multi-thread"))]
457
                Timer::Alternative(entry) => entry.deadline(),
458
            }
459
0
        }
460
461
0
        pub(crate) fn is_elapsed(&self) -> bool {
462
0
            match self {
463
0
                Timer::Traditional(entry) => entry.is_elapsed(),
464
                #[cfg(all(tokio_unstable, feature = "rt-multi-thread"))]
465
                Timer::Alternative(entry) => entry.is_elapsed(),
466
            }
467
0
        }
468
469
0
        pub(crate) fn flavor(self: Pin<&Self>) -> TimerFlavor {
470
0
            match self.get_ref() {
471
0
                Timer::Traditional(_) => TimerFlavor::Traditional,
472
                #[cfg(all(tokio_unstable, feature = "rt-multi-thread"))]
473
                Timer::Alternative(_) => TimerFlavor::Alternative,
474
            }
475
0
        }
476
477
0
        pub(crate) fn reset(
478
0
            self: Pin<&mut Self>,
479
0
            new_time: crate::time::Instant,
480
0
            reregister: bool
481
0
        ) {
482
            // Safety: we never move the inner entries.
483
0
            let this = unsafe { self.get_unchecked_mut() };
484
0
            match this {
485
0
                Timer::Traditional(entry) => {
486
                    // Safety: we never move the inner entries.
487
0
                    unsafe { Pin::new_unchecked(entry).reset(new_time, reregister); }
488
                }
489
                #[cfg(all(tokio_unstable, feature = "rt-multi-thread"))]
490
                Timer::Alternative(_) => panic!("not implemented yet"),
491
            }
492
0
        }
493
494
0
        pub(crate) fn poll_elapsed(
495
0
            self: Pin<&mut Self>,
496
0
            cx: &mut Context<'_>,
497
0
        ) -> Poll<Result<(), crate::time::error::Error>> {
498
            // Safety: we never move the inner entries.
499
0
            let this = unsafe { self.get_unchecked_mut() };
500
0
            match this {
501
0
                Timer::Traditional(entry) => {
502
                    // Safety: we never move the inner entries.
503
0
                    unsafe { Pin::new_unchecked(entry).poll_elapsed(cx) }
504
                }
505
                #[cfg(all(tokio_unstable, feature = "rt-multi-thread"))]
506
                Timer::Alternative(entry) => {
507
                    // Safety: we never move the inner entries.
508
                    unsafe { Pin::new_unchecked(entry).poll_elapsed(cx).map(Ok) }
509
                }
510
            }
511
0
        }
512
513
        #[cfg(all(tokio_unstable, feature = "rt-multi-thread"))]
514
        pub(crate) fn scheduler_handle(&self) -> &crate::runtime::scheduler::Handle {
515
            match self {
516
                Timer::Traditional(_) => unreachable!("we should not call this on Traditional Timer"),
517
                #[cfg(all(tokio_unstable, feature = "rt-multi-thread"))]
518
                Timer::Alternative(entry) => entry.scheduler_handle(),
519
            }
520
        }
521
522
        #[cfg(all(tokio_unstable, feature = "tracing"))]
523
        pub(crate) fn driver(self: Pin<&Self>) -> &crate::runtime::time::Handle {
524
            match self.get_ref() {
525
                Timer::Traditional(entry) => entry.driver(),
526
                #[cfg(all(tokio_unstable, feature = "rt-multi-thread"))]
527
                Timer::Alternative(entry) => entry.driver(),
528
            }
529
        }
530
531
        #[cfg(all(tokio_unstable, feature = "tracing"))]
532
        pub(crate) fn clock(self: Pin<&Self>) -> &crate::time::Clock {
533
            match self.get_ref() {
534
                Timer::Traditional(entry) => entry.clock(),
535
                #[cfg(all(tokio_unstable, feature = "rt-multi-thread"))]
536
                Timer::Alternative(entry) => entry.clock(),
537
            }
538
        }
539
    }
540
}
541
542
cfg_signal_internal_and_unix! {
543
    pub(crate) mod signal;
544
}
545
546
cfg_rt! {
547
    pub(crate) mod task;
548
549
    mod config;
550
    use config::Config;
551
552
    mod blocking;
553
    #[cfg_attr(target_os = "wasi", allow(unused_imports))]
554
    pub(crate) use blocking::spawn_blocking;
555
556
    cfg_trace! {
557
        pub(crate) use blocking::Mandatory;
558
    }
559
560
    cfg_fs! {
561
        pub(crate) use blocking::spawn_mandatory_blocking;
562
    }
563
564
    mod builder;
565
    pub use self::builder::Builder;
566
    cfg_unstable! {
567
        pub use self::builder::UnhandledPanic;
568
        pub use crate::util::rand::RngSeed;
569
570
        mod local_runtime;
571
        pub use local_runtime::{LocalRuntime, LocalOptions};
572
    }
573
574
    cfg_taskdump! {
575
        pub mod dump;
576
        pub use dump::Dump;
577
    }
578
579
    mod task_hooks;
580
    pub(crate) use task_hooks::{TaskHooks, TaskCallback};
581
    cfg_unstable! {
582
        pub use task_hooks::TaskMeta;
583
    }
584
    #[cfg(not(tokio_unstable))]
585
    pub(crate) use task_hooks::TaskMeta;
586
587
    mod handle;
588
    pub use handle::{EnterGuard, Handle, TryCurrentError};
589
590
    mod runtime;
591
    pub use runtime::{Runtime, RuntimeFlavor, is_rt_shutdown_err};
592
593
    mod id;
594
    pub use id::Id;
595
596
597
    /// Boundary value to prevent stack overflow caused by a large-sized
598
    /// Future being placed in the stack.
599
    pub(crate) const BOX_FUTURE_THRESHOLD: usize = if cfg!(debug_assertions)  {
600
        2048
601
    } else {
602
        16384
603
    };
604
605
    mod thread_id;
606
    pub(crate) use thread_id::ThreadId;
607
608
    pub(crate) mod metrics;
609
    pub use metrics::RuntimeMetrics;
610
611
    cfg_unstable_metrics! {
612
        pub use metrics::{HistogramScale, HistogramConfiguration, LogHistogram, LogHistogramBuilder, InvalidHistogramConfiguration} ;
613
614
        cfg_net! {
615
            pub(crate) use metrics::IoDriverMetrics;
616
        }
617
    }
618
619
    pub(crate) use metrics::{MetricsBatch, SchedulerMetrics, WorkerMetrics, HistogramBuilder};
620
621
    /// After thread starts / before thread stops
622
    type Callback = std::sync::Arc<dyn Fn() + Send + Sync>;
623
}