Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
6k views

iPhone app running Simulator 4.0 received Sigkill

I just got the iPhone SDK 4 and I'm trying to leave off developing an app I was working on before. So I implemented both -(void)applicationDidEnterBackground:(UIApplication *)application and - ...
5
votes
2answers
674 views

Getting Exception SIGKILL when relaunching app

I build and run a project in iPhone simulator. I send it to background by pressing the home button. Then I double press the home button to find my app in the background and tap it. It becomes active ...
4
votes
3answers
2k views

Killing the child processes with the parent process

I have a program spawning and communicating with cpu heavy, unstable processes, not created by me. If my app crashes or is killed by sigkill, I want the subprocesses to get killed as well, so the user ...
3
votes
2answers
115 views

Killed process by SIGKILL

I have a process that get killed immediately after executing the program. This is the code of the compiled executable, and it is a small program that reads several graphs represented by numbers from ...
3
votes
1answer
351 views

Weird EXC_Crash (SIGKILL) error report

When I start my app on device, the screen goes black and the app crashes. But the screen remains black rather than typical crash where you are brought back to springboard. Here's my crash error: ...
3
votes
3answers
3k views

How to gracefully handle the SIGKILL signal in Java

How do you handle clean up when the program receives a kill signal? For instance, there is an application I connect to that wants any third party app (my app) to send a finish command when logging ...
2
votes
2answers
611 views

Return a list of running background apps/processes in iOS

I'm working on a jailbreak app, and want to send SIGKILL messages to specific apps that may be running on a user's device (with their permission, of course). Google is not turning up anything for me. ...
2
votes
1answer
1k views

IOS Simulator SigKill

I was experimenting with my app in the ios simulator when I found that it produces the SIGKILL signal when I delete it from the multitasking bar and then rerun it. (I do this by stopping the app, ...
2
votes
1answer
231 views

Perl script is getting killed during sleep()

I have a quite simple perl script, that in one function does the following: if ( legato_is_up() ) { write_log("INFO: Legato is up and running. Continue the installation."); ...
1
vote
1answer
144 views

Thread one program received: SIGKILL, only in 4.3 Simulator

When I use the 5.0 simulator I don't get any error at all. When I use the 4.3 simulator I get the following message when I stop the execution of the app in Xcode using the the stop button. ...
1
vote
1answer
141 views

SIGKILL crash in Objective-C

I had develop an iPad app. When i close the app by clicked the minus button on multitasking bar, i run the app again and iPad was crash and fully black screen. After i connect with Xcode and found ...
1
vote
1answer
146 views

SIGKILL signal everytime I stop debugging

I have Xcode 4.2 and whenever I run my app in the simulator and I press the stop debugging button, I get a sigkill message. The breakpoint stops in the main.m file at this line: int retVal = ...
1
vote
2answers
393 views

program recieved signal SIGKILL exception comes up when i quit in the multitasking bar (iPhone)

when i double tap the home button and quit out of my app from the multitasking bar, when I open the app again, it says: "Thread 1: program received signal: SIGKILL" and freezes my iPod. The app has ...
1
vote
1answer
70 views

Attaching libumem is causing process to receive SIGKILL (Signal 9)

I have a need to check for memory leak in a Java application that uses JNI (C++ Code) a lot. When I attach libumem, the process exits after receiving a SIGKILL (Signal 9). When does a process receive ...
1
vote
0answers
235 views

SIGKILL when using Game Center on iPhone Simulator, everything works fine on device

I'm using Game Center to report achievements and scores when different things happen in my game. The problem is that sometimes (quite often, really) on the iPhone Simulator the app crashes a second or ...
1
vote
3answers
866 views

SIGKILL signal Handler

I have a requirement to write to a log file on reception of any terminate command like SIGTERM AND SIGKILL. I can register for SIGTERM but how can handle the SIGKILL signal?
1
vote
2answers
276 views

Signal passing to managed processes using supervisord

I am using supervisord to spawn and manage a FastCGI application that I am writing in C for a linux target. I have a signal handler that gracefully exits my application when SIGINT is received. I ...
1
vote
4answers
726 views

Solaris 10: fast detection of SIGCHLD / process exiting

On Solaris 10, I have a parent and child process. I kill the child process with kill -KILL. I want the fastest possible detection of this in the parent process (this is a master/slave system and the ...
1
vote
1answer
5k views

What does program received signal: SIGKILL mean when profiling an app running on device and using the xcode profiler to detect leaks

What does program received signal: SIGKILL mean when profiling an app running on device and using the xcode profiler to detect leaks? My app broke on a line calling drawInRect on a UIImage instance ...
1
vote
1answer
172 views

What is the SIGKILL permissions policy?

What is the SIGKILL permissions policy? I assume I can't kill something of the kernel, or of some other user, while running on non-root, but I haven't found any document about this.
1
vote
4answers
2k views

How to bind a key to sigkill in bash?

I'm developing my application (on Linux) and sadly it sometimes hangs. I can use Ctrl+C to send sigint, but my program is ignoring sigint because it's too far gone. So I have to do the ...
0
votes
1answer
95 views

App crashes on startup

Im trying to make an iOS App with Xcode, until now everything worked well. I have an Navigation Controller on MainWindow.xib, first it loaded RootViewController NIB, but now I changed it to main ...
0
votes
0answers
33 views

How can I find out why my app is getting SIGKILLed inside UIPasteboard?

Very infrequently, our app is crashing because it receives SIGKILL. The circumstances are different, but the backtrace is always the same: #0 0x94a00afa in mach_msg_trap () #1 0x94a01267 in ...
0
votes
1answer
339 views

Program received SIGKILL error in the main.m

I am receiving an error in my main thread when i am trying to load a table with data being supplied from a different thread than main thread. #import <UIKit/UIKit.h> int main(int argc, char ...
0
votes
2answers
1k views

Program received signal: “SIGKILL” when starting recording in Instruments

I would like to use Instruments to check if there are some memory leaks in my iPhone app. But as soon as I'm pressing on the record button in Instruments, the Xcode status bar is mentioning : GDB: ...
0
votes
1answer
576 views

will lead to “Program received signal: “SIGKILL”.”

I have a UITableView, where I extend/shrink the cells with the following code. I save the last 2 indexPaths to perform a reloadRowsAtIndexPaths: on it. Now I added a UISearchBar to the header for ...