I have ported Linux to AT91SAM9261 board, I have compiled my own Bootstrap, Uboot, Kernel and filesystem.
Now I want to debug my Linux kernel 2.6.30 using KGDB and GDB. I have host with Ubuntu installed and target (AT91SAM9261) with kernel 2.6.30, I want to debug my Linux kernel 2.6.30 using serial/Ethernet. In KGDB official site they have given…
I have code like this:
private Box mCurBox;
public Box CurBox
{
get { return mCurBox; }
set
{
if (mCurBox != value)
{
mCurBox = value;
}
}
}
When mCurBox is null then CurBox the debugger says "Could not be evaluated". If it knows that the…
any suggestions for good php debuggers, which are not bloated?
i tried using xdebug with dbgp plugin on notepad++, but it didn't work out and crashed the app every time i accessed the debugger. any other suggestions?
Is there any command either in debugger or ruby-debug to get a list of all gems and/or plugins loaded in memory for a Rails process? I understand only the 'require' gems are loaded but I would like to quickly see what got loaded during runtime.
I would like to debug my separately running JSP/Struts/Tomcat/Hibernate application stack using the Eclipse IDE debugger. How do I setup the java JVM and eclipse so that I can set breakpoints, monitor variable values, and see the code that is currently executing?
Hi
When debugging a java program in netbeans, I want the debugger to stop on the line that causes a NullPointerException so I can examine the variables there. I believe I have to use a condition on the breakpoint set at that line, but what is the syntax of the condition?
thanks for the help
I have an app that I'm working on that polls usage from an ISP (Download quota). I've tried threading this via 'new Thread(ThreaProc)' but that didn't work, now trying an IAsyncResult based approach which does the same thing... I've got no idea on how to rectify, please help?
The need-to-know:
// Global
public delegate void…
I'd like to use the source code of maven-managed dependencies when debugging our webapp in eclipse.
I have managed to attach the sources to the libraries in the "Maven Managed Depedencies" classpath container, i.e. when I open a class file from a depedency (e.g. using Ctrl-Shift-T), I see the source code.
However, when I…
I'd like to build a client for dbgsrv.exe. I'd like to know if there's a spec on the protocol that it uses and if there are any (open source?) libraries that are able to communicate with it for a remote debugging session.
I m using PHP5 & during testing on IE7 if some thing does no work then i can not find the bug quickly as i can do in FF (by the help of Firebug).
Is there any tool for code debugging in IE7 like in FireFox we have firebug ?
Have a little conundrum, when I debug my air app. It goes through the build process and seemingly launches. I can see the process in windows task manager, but can not see the actual application.
Kind of strange I know. If anyone has had the same problem and can offer a shortcut to success, I'd much appreciate a…
For some reason I can't debug my actionscript application in IntelliJ. I keep getting this error in the console: Unexpected debugged player communication problem. I have no idea what causes this!
Any ideas?
I'm trying to understand if I can debug a stand alone .js file which doesn't interact with browser. Is there any way to just load it and debug or I will be forced to encapsulate it into html file?
First time perl user and I am trying to debug some script to follow project logic and of course syntax.
Using cygwin after entering
$perl -d sample.pl
Loading DB routines from perl5db.pl version 1.3
Editor support available.
Enter h or h h' for help, orperldoc perldebug' for more help.
main::(sample2.pl:7): …
JavaScript editors namely
Komodo
Eclipse (if it has any)
Netbeans
Antechinus® JavaScript Editor
which one is best or proffered in by experience programmers, i am completely new to JavaScript and php so have no idea of which one to choose :s
or if there are any other do tell please
PS: also heard that…
Running PHP debug session in Netbeans always opens as a new tab in browser (I use Chrome and Firefox).
How to force browser (or Netbeans) to run the session in the same browser tab,
so I do not have n open tabs with the same url for debug?
I've seen this type of problem before but only on ASP.net applications. I'm using a plain ol' WinForms application with Visual Studio 2008. I'm on Windows 7 Ultimate x64. The error I get when trying to debug my solution is:
Error while trying to run project:
Unable to start debugging
Any ideas on…
Hello,
I have an iPhone app that I've been working on and have recently upgraded my version of XCode. Since the upgrade, I can build and debug in the iPhone Simulator just fine, but when I try to debug on an attached device I get the following messages:
From Xcode4:
GNU gdb 6.3.50-20050815 (Apple…
It's a simple deal: I'm sometimes in places where I don't have my laptop, and find myself with spare time and an idea for a project. But unfortunately, I can't do anything about it.
I tried a variety of solutions, which include running IDEs (like phpstorm or Aptana) on a disc-on-key or cd (very slow…
I was wondering how to implement the debuggger mouse over display functionality, U know when u have set a breakpoint in a degugger, say in VS and you hover over a variable and the context is displayed.
I'm curious as to how that would be implemented?
Bob.
This is a question I have wondered about for quite some time, yet I have never found a suitable solution. If I run a script and I come across, let's say an IndexError, python prints the line, location and quick description of the error and exits. Is it possible to automatically start pdb when an…
This looks like something simple but I could not find the answer so far -
I have just learnt python and need to start learning pdb. In my module I have the usual if __name__ == __main_ trick to execute some code when the module is run as a program.
So far I have been running it via python -m…
Hello (and thanks in advance)
I'm in a bit of a quandry, I cant seem to figure out why I'm seg faulting.
A couple of notes:
It's for a course -- and sadly I am
required to use use C-strings
instead of std::string.
Please dont fix my code (I wont learn that way and I will keep bugging…