mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2026-03-28 01:28:46 +00:00
12 lines
207 B
Python
12 lines
207 B
Python
import os
|
|
import signal
|
|
|
|
from lldb_common import load_launch_info
|
|
|
|
launch_info = load_launch_info()
|
|
debug_pid = int(launch_info["pid"])
|
|
try:
|
|
os.kill(debug_pid, signal.SIGKILL)
|
|
except Exception:
|
|
pass
|