diff --git a/assets/details1.png b/assets/details1.png deleted file mode 100644 index 63542dbe4..000000000 Binary files a/assets/details1.png and /dev/null differ diff --git a/assets/details2.png b/assets/details2.png deleted file mode 100644 index da9fccfc7..000000000 Binary files a/assets/details2.png and /dev/null differ diff --git a/assets/details2_crop.png b/assets/details2_crop.png deleted file mode 100644 index ce95dfec6..000000000 Binary files a/assets/details2_crop.png and /dev/null differ diff --git a/assets/resource_details1.png b/assets/resource_details1.png deleted file mode 100644 index 80ffdf930..000000000 Binary files a/assets/resource_details1.png and /dev/null differ diff --git a/assets/resource_details2.png b/assets/resource_details2.png deleted file mode 100644 index e5adc088e..000000000 Binary files a/assets/resource_details2.png and /dev/null differ diff --git a/assets/resource_details_semaphore.png b/assets/resource_details_semaphore.png new file mode 100644 index 000000000..87126104f Binary files /dev/null and b/assets/resource_details_semaphore.png differ diff --git a/assets/resource_details_sleep.png b/assets/resource_details_sleep.png new file mode 100644 index 000000000..90f13ce14 Binary files /dev/null and b/assets/resource_details_sleep.png differ diff --git a/assets/resources.png b/assets/resources.png deleted file mode 100644 index c2333b5c3..000000000 Binary files a/assets/resources.png and /dev/null differ diff --git a/assets/resources_list.png b/assets/resources_list.png new file mode 100644 index 000000000..532bc8a07 Binary files /dev/null and b/assets/resources_list.png differ diff --git a/assets/task_details.png b/assets/task_details.png new file mode 100644 index 000000000..aec18ba2c Binary files /dev/null and b/assets/task_details.png differ diff --git a/assets/tasks_list.png b/assets/tasks_list.png index 0e71d417c..ae0501323 100644 Binary files a/assets/tasks_list.png and b/assets/tasks_list.png differ diff --git a/tokio-console/README.md b/tokio-console/README.md index 95276af9f..9f07b1d8e 100644 --- a/tokio-console/README.md +++ b/tokio-console/README.md @@ -106,14 +106,14 @@ Using the and arrow keys, an individual ta Pressingenter while a task is highlighted displays details about that task: -![task details](https://raw.githubusercontent.com/tokio-rs/console/main/assets/details2.png) +![task details](https://raw.githubusercontent.com/tokio-rs/console/main/assets/task_details.png) Pressing the escape key returns to the task list. The r key switches from the list of tasks to a list of [resources], such as synchronization primitives, I/O resources, et cetera: -![resource list](https://raw.githubusercontent.com/tokio-rs/console/main/assets/resources.png) +![resource list](https://raw.githubusercontent.com/tokio-rs/console/main/assets/resources_list.png) Pressing the t key switches the view back to the task list. @@ -122,13 +122,13 @@ Like the task list view, the resource list view can be navigated using the and arrow keys. Pressing enter while a resource is highlighted displays details about that resource: -![resource details --- oneshot](https://raw.githubusercontent.com/tokio-rs/console/main/assets/resource_details1.png) +![resource details --- sleep](https://raw.githubusercontent.com/tokio-rs/console/main/assets/resource_details_sleep.png) The resource details view lists the tasks currently waiting on that resource. -This may be a single task, as in the [`tokio::sync::oneshot`] channel above, or -a large number of tasks, such as this [`tokio::sync::Semaphore`]: +This may be a single task, as in the [`tokio::time::Sleep`] above, or +a large number of tasks, such as this private `tokio::sync::batch_semaphore::Semaphore`: -![resource details --- semaphore](https://raw.githubusercontent.com/tokio-rs/console/main/assets/resource_details2.png) +![resource details --- semaphore](https://raw.githubusercontent.com/tokio-rs/console/main/assets/resource_details_semaphore.png) Like the task details view, pressing the escape key while viewing a resource's details returns to the resource list.