Skip to content

Commit

Permalink
Fix incorrect dtrace_probe setup (#4447)
Browse files Browse the repository at this point in the history
"Typos" basically.

Fixes #4445
  • Loading branch information
SeanTAllen authored Sep 19, 2023
1 parent af4238a commit be92517
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/common/dtrace_probes.d
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ provider pony {
/**
* Fired when a actor is being created
* @param scheduler is the scheduler that created the actor
* @actor is the actor that was created
* @param actor is the actor that was created
*/
probe actor__alloc(uintptr_t scheduler, uintptr_t actor);

Expand All @@ -17,7 +17,7 @@ provider pony {

/**
* Fired when a message is being run by an actor
* @params scheduler is the active scheduler
* @param scheduler is the active scheduler
* @param actor the actor running the message
* @param id the message id
*/
Expand All @@ -36,7 +36,7 @@ provider pony {
* Fired when a message is being run by an actor
* @param scheduler_index is the active scheduler's index
* @param id the message id
* @param actor_to is the receiving actor
* @param actor is the receiving actor
*/
probe actor__msg__pop(int32_t scheduler_index, uint32_t id, uintptr_t actor);

Expand Down Expand Up @@ -135,7 +135,7 @@ provider pony {
/**
* Fired when the garbage collector finishes receiving an object
* @param scheduler is active scheduler
* @params actor is the actor that finished receiving an object
* @param actor is the actor that finished receiving an object
*/
probe gc__recv__end(uintptr_t scheduler, uintptr_t actor);

Expand Down

0 comments on commit be92517

Please sign in to comment.