Tag

SIGKILL

1 views collected around this technical thread.

Cognitive Technology Team
Cognitive Technology Team
Apr 1, 2025 · Operations

Four Powerful kill Command Techniques for Managing Linux Processes

This article explains how to use the Linux kill command with SIGTERM, SIGQUIT, SIGKILL, and SIGSTOP signals to gracefully terminate, debug, force‑stop, or pause processes while minimizing data loss and providing practical command examples.

Kill CommandSIGKILLSIGTERM
0 likes · 4 min read
Four Powerful kill Command Techniques for Managing Linux Processes
Java Architecture Diary
Java Architecture Diary
Mar 18, 2024 · Fundamentals

Why macOS 14.4 Crashes Java Apps: Unexpected SIGKILL on Protected Memory

macOS 14.4 introduces a change that forces the kernel to send SIGKILL when a thread in write mode accesses protected memory, causing Java processes (Java 8‑22) on Apple Silicon (M1, M2, M3) to terminate abruptly, with no rollback option.

Apple SiliconJavaSIGKILL
0 likes · 3 min read
Why macOS 14.4 Crashes Java Apps: Unexpected SIGKILL on Protected Memory
Baidu App Technology
Baidu App Technology
Oct 24, 2022 · Mobile Development

Understanding SIGKILL Crashes and Capturing Them with MetricKit on iOS

A SIGKILL crash indicates the OS forcibly terminated an iOS app, which cannot be caught directly, but MetricKit (iOS 14+) can automatically collect diagnostic payloads after restart, allowing developers to extract termination reasons, stack traces, understand codes like 0x8badf00d, and address common causes such as main‑thread watchdog timeouts and deadlocks.

MetricKitObjective-CSIGKILL
0 likes · 10 min read
Understanding SIGKILL Crashes and Capturing Them with MetricKit on iOS