2
votes
2answers
35 views
problem with quadTree & union
hi!
i have the following quadtree-like structure, in which each cell can either be a inner node or a leaf.
if it is a leaf, it can store a color.
if it is a inner node, it stores …
1
vote
1answer
19 views
How to make attach to process macro to attach to Native code?
I am using the following macro codeto attach to the debugger:
process.Attach()
Works, fine,
but for some reasons it always attaches to the "Managed Code" (sort of default mod …
0
votes
1answer
20 views
PHP: Understanding code via function or file tracing (without XDebug)
I have inherited a moderately large PHP codebase. In order to better understand how it works, I'd like to be able to print to logs a function or file trace whenever I hit a page, …
2
votes
4answers
83 views
Is there any assembly language debugger for OS X?
So i was wondering if there is any? I know afd on windows but not sure anything about mac?
And this his how i am using nasam on the following code: nasm a.asm -o a.com -l a.lst
[ …
4
votes
11answers
216 views
What is a good Javascript debugging tool?
Haven't touch javascript for 3 years. Just got a javascript project and wanted to know any new ways or tools emerged these years to debug javascript?
I used alert 3 years ago.
…
0
votes
4answers
80 views
Is there a tool for Visual Studio to track (or breakpoint) variable value?
Is there is a tool or a setting in the debugger to stop on the break point or if variable is set to a particular value? I mean if I know that value will be set to "HELLO" then the …
0
votes
0answers
12 views
XMLSpy 2009 Pro Debugger Won’t Start
I'm using XMLSpy 2009 to write XSLT 1.0 documents. When I go to XSL -> Start Debugger, it opens the debugging view; however, when I click the Go (green arrow) button a message app …
-2
votes
1answer
40 views
Odd characters in memory
While I was running my debugger I decided to examine a specific spot in memory and noticed that there are some odd characters ¾㵎䐑톢హ��洓. Does anyone know what this is?
1
vote
1answer
34 views
GDB debugger problems - No source file named…
For some reason I can't get gdb to recognize the files in my project when debugging. I've tried a variety of things, including downloading different version, etc. and the last thin …
0
votes
2answers
70 views
How can I programatically call the ruby debugger from within a ruby program in Ruby 1.9?
I am writing a web based debugger for Ruby, but in order to do this I need to be able to call the Ruby debugger from within a Ruby program on the server side. Has this ever been do …
1
vote
5answers
97 views
Learning C : noob suitable debugger
Greetings!
Finally stared learning C and I think the time has come to start working with a debugger. At this time I'm using Gvim for editor and command line for compiling. After tr …
0
votes
1answer
24 views
Something wrong with my gdb or KDevelop IDE?
I have Ubuntu 9.04 and KDevelop IDE.
When I am trying to debug C++ console app, it tells me:
GDB cannot use the tty* or pty* devices.
Check the settings on /dev/tty* and /dev/pty*
…
0
votes
4answers
22 views
Can You Use MSVC 6.0’s Debugger to ‘Step Into’ a Macro?
I am using MSVC 6.0 to call a macro in the Win32API and I'm getting an access violation. I know that the pointers I'm passing to the macro contain valid addresses, though they're …
0
votes
1answer
34 views
How to debug programms written in fasm under linux using gdb?
I wrote simple "hello, world" in fasm, and its works, but how i can generate debug info for gdb and edb (Evan's Debugger)? Fasm compiler could only produce debugging symbols in its …
1
vote
5answers
118 views
Any tips for a newbie who wants to find a good debugger for C++?
I'm trying to debug my code. I haven't really used a debugger before. I know that in the long run, learning how to use a debugger will be very, very helpful, so I'm trying to find …
