Replies: 1 comment
-
|
The change I made to those lines then was a formatting change. These lines were present from earlier in the file |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The file
src/tlapm.mlhas this code:So this registers a signal handler for the
Sys.sigusr1signal, which if received raises aStacktraceexception.Sys.sigusr1is a POSIX-standard signal ID reserved for custom user-defined signals. I can't find any other references toSys.sigusr1in the codebase, so this signal must originate outside of TLAPM - perhaps by runningkill -s SIGUSR1 <tlapm PID>from the terminal while TLAPM is running.The
git blamecommand shows this was added by @johnyf back in 2021. @johnyf, do you remember why you added this? Is this some debug code which remains in the codebase?Beta Was this translation helpful? Give feedback.
All reactions