1
1
//! Global allocator statistics.
2
2
//!
3
3
//! `jemalloc` tracks a wide variety of statistics. Many of them are cached, and
4
- //! only refreshed when the `jemalloc` "epoch" is advanced. See the [`::epoch`] type
4
+ //! only refreshed when the `jemalloc` "epoch" is advanced. See the [`crate ::epoch`] type
5
5
//! for more information.
6
6
7
7
option ! {
@@ -11,7 +11,7 @@ option! {
11
11
/// Total number of bytes allocated by the application.
12
12
///
13
13
/// This statistic is cached, and is only refreshed when the epoch is
14
- /// advanced. See the [`::epoch`] type for more information.
14
+ /// advanced. See the [`crate ::epoch`] type for more information.
15
15
///
16
16
/// This corresponds to `stats.allocated` in jemalloc's API.
17
17
///
@@ -46,7 +46,7 @@ option! {
46
46
/// value returned by [`allocated`].
47
47
///
48
48
/// This statistic is cached, and is only refreshed when the epoch is
49
- /// advanced. See the [`::epoch`] type for more information.
49
+ /// advanced. See the [`crate ::epoch`] type for more information.
50
50
///
51
51
/// This corresponds to `stats.active` in jemalloc's API.
52
52
///
@@ -78,7 +78,7 @@ option! {
78
78
/// Total number of bytes dedicated to `jemalloc` metadata.
79
79
///
80
80
/// This statistic is cached, and is only refreshed when the epoch is
81
- /// advanced. See the [`::epoch`] type for more information.
81
+ /// advanced. See the [`crate ::epoch`] type for more information.
82
82
///
83
83
/// This corresponds to `stats.metadata` in jemalloc's API.
84
84
///
@@ -116,7 +116,7 @@ option! {
116
116
/// value returned by [`active`].
117
117
///
118
118
/// This statistic is cached, and is only refreshed when the epoch is
119
- /// advanced. See the [`::epoch`] type for more information.
119
+ /// advanced. See the [`crate ::epoch`] type for more information.
120
120
///
121
121
/// This corresponds to `stats.resident` in jemalloc's API.
122
122
///
@@ -151,7 +151,7 @@ option! {
151
151
/// larger than the value returned by [`active`].
152
152
///
153
153
/// This statistic is cached, and is only refreshed when the epoch is
154
- /// advanced. See the [`::epoch`] type for more information.
154
+ /// advanced. See the [`crate ::epoch`] type for more information.
155
155
///
156
156
/// This corresponds to `stats.mapped` in jemalloc's API.
157
157
///
@@ -186,7 +186,7 @@ option! {
186
186
/// excluded from mapped memory statistics, e.g. [`mapped`].
187
187
///
188
188
/// This statistic is cached, and is only refreshed when the epoch is
189
- /// advanced. See the [`::epoch`] type for more information.
189
+ /// advanced. See the [`crate ::epoch`] type for more information.
190
190
///
191
191
/// This corresponds to `stats.retained` in jemalloc's API.
192
192
///
0 commit comments