What is “Signal 15 received”
This indicates the linux has delivered a SIGTERM to your process. This is usually at the request of some other process (via kill()) but could also be sent by your process to itself (using raise()). This signal requests an orderly shutdown of your process. If you need a quick cheatsheet of signal numbers, open a … Read more