From b80872ff61014bae800cdf57d65a9e8894733161 Mon Sep 17 00:00:00 2001 From: Julian P Samaroo Date: Tue, 4 Jan 2022 14:08:11 -0600 Subject: [PATCH] devdocs: Add some task runtime probe docs --- doc/src/devdocs/probes.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/doc/src/devdocs/probes.md b/doc/src/devdocs/probes.md index 83e63bdb621ce..5f0dba1c83f2f 100644 --- a/doc/src/devdocs/probes.md +++ b/doc/src/devdocs/probes.md @@ -96,8 +96,11 @@ the probe handler. ### Task runtime probes -1. `julia:rt__ctx__switch(last, next, ptls)`: Switching from task `last` to task `next` on thread associated with PTLS `ptls`. -2. `julia:rt__new__task(parent, child, ptls)`: Task `parent` created task `child` on thread associated with PTLS `ptls`. +1. `julia:rt__run__task(task, ptls)`: Switching to task `task` on thread associated with PTLS `ptls`. +2. `julia:rt__pause__task(task, ptls)`: Switching from task `task` on thread associated with PTLS `ptls`. +3. `julia:rt__new__task(parent, child, ptls)`: Task `parent` created task `child` on thread associated with PTLS `ptls`. +4. `julia:rt__start__process__events(task)`: Task `task` started processing libuv events. +5. `julia:rt__finish__process__events(task)`: Task `task` finished processing libuv events. #### GC stop-the-world latency