diff --git a/doc/src/devdocs/probes.md b/doc/src/devdocs/probes.md index 83e63bdb621cee..5f0dba1c83f2fa 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