diff options
| author | Irene Knapp <ireneista@irenes.space> | 2026-05-29 01:31:54 -0700 |
|---|---|---|
| committer | Irene Knapp <ireneista@irenes.space> | 2026-05-29 01:31:54 -0700 |
| commit | 4ca2a9d690a3cb99663808d0fb61535bd0a66b34 (patch) | |
| tree | a7c7efd539a69b1c2dfd8fab8978a1f2634890c0 | |
| parent | 597c2694612d56ab2fe4567e02a1424ed12e39de (diff) | |
make the crash handler also print the word crash
Force-Push: yes Change-Id: Ib47e3c68e08d286f01dddecfbd565f881b94f01f
| -rw-r--r-- | linux-dynamic.e | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-dynamic.e b/linux-dynamic.e index 7890043..ee34e0e 100644 --- a/linux-dynamic.e +++ b/linux-dynamic.e @@ -340,7 +340,7 @@ sys-sigaction drop ; -: handle-crash list-callers 1 sys-exit ; +: handle-crash ." CRASH" newline list-callers 1 sys-exit ; : install-crash-handler ' handle-crash entry-to-execution-token wrap-signal-handler |