Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

When I close the application I got Message from debugger: Terminated due to signal 15

Tags:

ios

swift

xcode6

How can I solve this problem, I don't know that did it affect to my problem in this link My previous problem about Core data ?

This message will occur when I cmd+Q of the application.

Message from debugger: Terminated due to signal 15

and if who know the solution of my previous problem please tell me.

like image 743
Rhosgobel Thana Avatar asked May 04 '15 12:05

Rhosgobel Thana


People also ask

What is received signal 15?

This indicates system has delivered a SIGTERM to the processes. 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 process or system itself.

What is signal 15 Sigterm?

SIGTERM. (signal 15) is a request to the program to terminate. If the program has a signal handler for SIGTERM that does not actually terminate the application, this kill may have no effect. This is the default signal sent by kill.

What does terminated due to signal 9 mean?

Terminated due signal 9 after iOS 13 I know it means that the app was terminated by a sigkill signal and maybe it's because of memory pressure and etc.


1 Answers

  • Message from debugger: Terminated due to signal 15 occurs whenever the user manually terminates the application (whether simulated in iOS simulator or on a provisioned iOS device) through CMD-Q (Quit) or STOP, which is toggled after you click on RUN.

  • In OS terms, signal 15 is a Linux enumeration for the signal, SIGTERM, which means signal terminate.

like image 115
umarqattan Avatar answered Nov 03 '22 00:11

umarqattan