Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
debugger
- Page 1
debugger
Programming
Software Development
18 Years Ago
by kararu
I am getting segmentation fault in my perl code. I am not able to find out,from where this arises.Can anyone suggest em a good
debugger
to find it out.thanks a lot.
Re: debugger
Programming
Software Development
18 Years Ago
by MattEvans
… CPP code and the CPP program itself. The "best
debugger
" is assuming everything's going to go wrong before…
debugger help
Programming
Software Development
15 Years Ago
by dinamit875
… working, but as soon as im trying to add results
debugger
breaks after adding score, can anyone help me to fix…
Re: debugger help
Programming
Software Development
15 Years Ago
by gerard4143
Which
debugger
are you using?
Re: debugger help
Programming
Software Development
15 Years Ago
by dinamit875
[QUOTE=gerard4143;1033498]Which
debugger
are you using?[/QUOTE] im using devc++
Debugger "Problems"
Programming
Software Development
13 Years Ago
by EneilShade
…gives me, 1183908153, is wrong. I immediately turned towards the
debugger
(using NetBeans 7.0). Upon close investigation, my Sieve is…was my summing method wrong? TO THE
DEBUGGER
! As soon as I turned the
debugger
on and set its breakpoints in the…we now are at my predicament -- it works with the
debugger
, and does not without it. Needles to say, I am…
debugger tracer [anti-crash system]
Programming
Software Development
16 Years Ago
by chantak
… system for what I researched, is a type of automatic
debugger
/tracer [b][I am not sure][/b]. The goal of… form of documentation, books][/b]; *information about any type of
debugger
/tracer that can do this type of task, if possible… with [b]a plugin system, or anti-crash system, or
debugger
/tracer[/b] and want share it to me, are all…
Re: Debugger "Problems"
Programming
Software Development
13 Years Ago
by EneilShade
… I have debugged for hours on my own. When the
debugger
is not attached, it shows that no numbers have been…. Rather strange a problem. As soon as I attach a
debugger
, it prints the proper values and adds correctly.
Re: Debugger "Problems"
Programming
Software Development
13 Years Ago
by NormR1
[QUOTE] why, though, does it work in the
debugger
?[/QUOTE] It should work in the
debugger
. Why do you think it shouldn't?
Re: Debugger "Problems"
Programming
Software Development
13 Years Ago
by EneilShade
No, it does work when I use the
debugger
. It does not work (at all) when I do not use the
debugger
.
Re: Debugger "Problems"
Programming
Software Development
13 Years Ago
by NormR1
[QUOTE] It does not work (at all) when I do not use the
debugger
.[/QUOTE] Can you post the code you are talking about? That does not work. I can't understand how the
debugger
could change how it executes. I copied, compiled and executed the code you posted earlier and it seems to work up to the last 2 items.
Re: Debugger "Problems"
Programming
Software Development
13 Years Ago
by NormR1
So now where is the OP's thinking that the code worked differently in the
debugger
? I can't imagine his tracing for 2000000 times. Question about the
debugger
: Does it have conditional breaks? For example: break here when X > 19999900
Re: Debugger "Problems"
Programming
Software Development
13 Years Ago
by EneilShade
The problem is, unless the
debugger
is on, it thinks all numbers are primes.
Re: Debugger "Problems"
Programming
Software Development
13 Years Ago
by EneilShade
I have removed the print code. But thanks for the post! That is an interesting bug! I will check that out. Now, why, though, does it work in the
debugger
?!
Re: Debugger "Problems"
Programming
Software Development
13 Years Ago
by JamesCherrill
Have you changing the declaration of int Total to long Total? As I posted before, the correct answer is too large for an int. It may be that he
debugger
is picking up the integer overflow whereas the normal JRE doesn't check for that???
Re: Debugger "Problems"
Programming
Software Development
13 Years Ago
by JamesCherrill
… J1.6u26 under Eclipse, both normal execution and under the
debugger
and all my primes looked good (including the last two…
Re: Debugger "Problems"
Programming
Software Development
13 Years Ago
by JamesCherrill
My only guess is that the
debugger
may handle the int overflow differently from the normal runtime - the OP said all his problems went away when he changed Total to long.
Debugger for PL/SQL in sql server
Programming
Databases
16 Years Ago
by SubeeshBabu
Hi Everyone, Is there any in built
debugger
tool present in SQL Server for PL/SQL programs? Or can we configure a new
debugger
tool like SQL*Debug for Oracle? I need your help for this. waiting for your reply
debugger is not running
Programming
Web Development
19 Years Ago
by muthu
…, but in home it says, ur webserver cannot debug ie
debugger
is not running. i also check in webconfig file , ie…
debugger code
Programming
Software Development
17 Years Ago
by sweety0
does anybody has a debuger code.means how to make
debugger
in assembly language...
Re: debugger code
Programming
Software Development
17 Years Ago
by sweety0
hi dear i need a coding of a
debugger
which works in the assembly language...
Re: debugger code
Programming
Software Development
17 Years Ago
by Salem
Well which operating system / assembler / tools are you using at present? A
debugger
needs to be pretty well matched to what you have in order to work effectively.
Re: debugger code
Programming
Software Development
17 Years Ago
by Evenbit
Download "disasm.zip" from the Files section of AoAProgramming: [url]http://groups.yahoo.com/group/aoaprogramming/[/url] It is a good place to start on coding a modern-day disassembler/
debugger
. Nathan. [url]http://del.icio.us/Evenbit[/url]
Debugger Skipping my loop??
Programming
Software Development
14 Years Ago
by coding101
Why is the
debugger
showing that it is skipping my loop in this method […
Re: debugger
Programming
Software Development
18 Years Ago
by kararu
Since Iam not sure from where the error arises, I am not able to provide code.Actually it uses inline CPP. the cpp program has memory allocations and deallocations done properly in a thread environment.(I create threads in a loop.When I create many threads, seg fault comes. if I create few threads no error).help me out pls.
Re: debugger
Programming
Software Development
18 Years Ago
by KevinADC
Sorry, but your question is out of my range of knowledge and experience. A question of this nature might be best asked on the perlmonks website.
Re: debugger
Programming
Software Development
18 Years Ago
by kararu
okay.I will try that .Thanks. meanwhile, I tried using GDB(since perl is written in c too),But gdb requires a program in executable form.How will I put that .pl there ? :(.It naturally says not exe format.How do I come out of this?
Re: debugger
Programming
Software Development
18 Years Ago
by MattEvans
The perl interpretter is written in C but .pl files aren't executable. You can't make them executable without using some kind of Perl-to-C translater. I wouldn't advise translating them!
Re: debugger
Programming
Software Development
18 Years Ago
by KevinADC
I've never used perl2exe but others have and reported good results: [url]http://www.indigostar.com/perl2exe.htm[/url]
Re: debugger help
Programming
Software Development
15 Years Ago
by Dave Sinkula
[CODE]team temp[1];[/CODE] This has only one element: [iCODE]temp[0][/iCODE]. [CODE][COLOR="Red"]temp[1][/COLOR] = teams1[(j-1)]; teams1[(j-1)] = teams1[j]; teams1[j] = [COLOR="Red"]temp[1][/COLOR];[/CODE]
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC