Elektrine lite

← Feed

@cannedtuna@lemmy.world

Post #1665449

2026-01-15 01:15 UTC

How’s that differ from ```SIGHUP```?

Replies (2)

  • @pivot_root@lemmy.world 2026-01-15 01:26

    Historical context, delivery, and handling. HUP—hang up—is sent to indicate the TTY is closed. TERM—terminate— is sent by request. What happens when received is usually up to the process. Most of them just leave the defaults, which is to exit.

    Open ##1665451

  • @firelizzard@programming.dev 2026-01-15 03:06

    They’re different signals. The default handling is the same - terminate - but they’re triggered by different things and (if the process handles them) handled by separate handlers.

    Open ##1665452