summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAiden Fox Ivey <aiden.foxivey@shopify.com>2025-10-07 10:56:29 -0400
committerTakashi Kokubun <takashikkbn@gmail.com>2025-10-07 15:13:46 -0700
commit4d0f53520c09eab591ba69fb3fa16d7f55103bc8 (patch)
treeae13baec168edd2492071b868db0feb3c1468936 /doc
parentb78270a6c6181e02acf281bcbb0c6a5429a9537a (diff)
ZJIT: Change name format of zjit_exit_locations dump file
Diffstat (limited to 'doc')
-rw-r--r--doc/zjit.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/zjit.md b/doc/zjit.md
index c0378031b2..d0d3e36191 100644
--- a/doc/zjit.md
+++ b/doc/zjit.md
@@ -150,10 +150,10 @@ Through [Stackprof](https://github.com/tmm1/stackprof), detailed information abo
./miniruby --zjit-trace-exits script.rb
```
-A file called `zjit_exit_locations{timestamp}.dump` will be created in the same directory as `script.rb`. Viewing the side exited methods can be done with Stackprof:
+A file called `zjit_exits_{pid}.dump` will be created in the same directory as `script.rb`. Viewing the side exited methods can be done with Stackprof:
```bash
-stackprof path/to/zjit_exit_locations{timestamp}.dump
+stackprof path/to/zjit_exits_{pid}.dump
```
## Useful dev commands