Tagged Questions
The panic tag has no wiki summary.
3
votes
3answers
389 views
Panic recover in Go v.s. try catch in other languages
I've just read this post about Panic/Recover in Go and I'm not clear on how this differs from try/catch in other mainstream languages.
2
votes
2answers
586 views
Debugging panics in Symbian OS usnig Carbide.c++
Is there a way to drop into the debugger when any panic occurs like if there were a breakpoint?
I'm using Carbide.c++ 2.3.0. I know about the Debug Configurations > x86 Exceptions, but it covers ...
2
votes
1answer
416 views
Why am I getting a panic with Perl 5.10, Mason, and Apache?
I'm developing an application using Perl 5.10, HTML::Mason, and apache 2.2. This is the first time I've used Perl 5.10 for a big project. I get a strange behavior every once in a while. The ...
2
votes
4answers
1k views
How to find the cause for a USER 44 PANIC?
One of the products we develop is a phone app for nokia phones done in C++ and Symbian, we started getting "random" crashes a while a ago with a USER 44 panic.
I am pretty new to the symbian ...
1
vote
1answer
92 views
Python indentation issues using panic CODA
Any one else getting lots of indentation syntax errors when writing python in panics coda IDE? Ive been getting a lot of these, and just shuffling my code around seems gets rid of the error. Bug?
1
vote
1answer
427 views
Backtrace while Kernel Panic
Is it possible to get backtrace of kext without attaching with gdb as described
at
...
1
vote
1answer
528 views
Using Coda to access server SSH/sFTP
I have a VPS server and I lock down to only expose 3 ports 80, 443 and 22222 for ssh. So far I can connect to the server using Terminal (Mac) and Panic Transmit, but when I try to connect using Panic ...
1
vote
3answers
392 views
Symbian: how to get stack trace on panic when running on device?
Could somebody please give me a hint about how to get stack trace in Symbian. I'm experiencing KERN-EXEC 0 panic, but cannot locate it's origin. I've seen other SO questions about this, like this, but ...
1
vote
1answer
60 views
Kernel panic seems to be unrelated to the changes
I made changes in sched.c in Linux kernel 2.4 (homework), and now the system goes into kernel panic. The strange thing is: it seems to pass A LOT of booting checks and initializations, and panics only ...
0
votes
0answers
6 views
Root ext4 partition using xen kernel (gentoo)
I have just tried to install gentoo linux using xen kernel. The problem is that in kernel config in filesystem section there was no ext4 option. But my root partition is ext4. Well I tried to ignore ...
0
votes
1answer
35 views
Android/Eclipse PANIC: Could not open
I'm brand new to Android development and Eclipse so I have just set it all up and I am attempting the Hello World tutorial. Sadly when I try and run the program I get the following error:
PANIC: ...
0
votes
0answers
139 views
Attach GDB to Mac OS X while Panic
I would like to see the backtrace with symbols of the current thread while Mac OS X is in panic state as described below
...
0
votes
2answers
454 views
Symbian: kern-exec 3 panic on RLibrary::Load
I have troubles with dynamic loading of libraries - my code panics with Kern-Exec 3. The code is as follows:
TFileName dllName = _L("mydll.dll");
TFileName dllPath = _L("c:\\sys\\bin\\");
RLibrary ...
0
votes
2answers
324 views
Using Browser Control's PostUrlL API
I'm trying to POST some multipart form data to my server using a Browser Control.
The PostUrlL(); Method Panics with KERN-EXEC 3 as soon as it is invoked.
Here's a snippet similar to the one I'm ...
0
votes
2answers
190 views
Go - Raise an exception
I would want to raise an exception as it's made in Python or Java --to finish the program with an error message--.
An error message could be returned to a parent function:
func readFile(filename ...
0
votes
1answer
490 views
Using struct causes kernel panic?
I'm taking my first crack at writing some linux kernel code, and I'm hitting a weird kernel panic.
I have a linked list I am maintaining with the kernel's built-in macros (include/linux/list.h). If ...
0
votes
2answers
212 views
Kernel Panic after changes in sys_close
I'm doing a course on operating systems and we work in Linux Red Hat 8.0
AS part of an assignment I had to change sys close and sys open. Changes to sys close passed without an incident, but when I ...