Skip to content

Commit

Permalink
devdocs: Add some task runtime probe docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsamaroo committed Jan 4, 2022
1 parent d8c8fd2 commit b80872f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions doc/src/devdocs/probes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit b80872f

Please sign in to comment.