0
votes
1answer
54 views
debugging a thread process using gdb/dbx
This might be genuine question but i am asking here since i was out of any clue when i was asked this question in an interview.
how could we debug a thread which was created by an …
9
votes
8answers
286 views
Most tricky/useful commands for gdb debugger
Hi All,
Can you post your most tricky and useful commands while you run a debugger like gdb or dbx.
0
votes
2answers
124 views
C code - need to clarify the effectiveness.
Hi I have written a code based upon a requirement.
(field1_6)*(field2_30)*(field3_16)*(field4_16)*(field5_1)*(field6_6)*(field7_2)*(field8_1)*.....
this is one bucket(8 fields) o …
1
vote
3answers
123 views
Optimized code on Unix?
What is the best and easiest method to debug optimized code on Unix which is written in C?
Sometimes we also don't have the code for building an unoptimized library.
1
vote
1answer
62 views
viewing the stack when a crash happens
hi,
i am using AIX OS.here i am facing a problem that when ever the process crashes there is no stack written in the log.it just gives an information of signal1/10/4 has occured.
…
4
votes
6answers
334 views
ADO or DBX using Delphi
Which is better (and for what reasons) to use to connect to MS SQL, Oracle or Firebird from a Delphi Win32 application -- ADO or DBX (Database Express)?
Both allow you to connect …
0
votes
1answer
48 views
dbxtool on 64-bit linux won’t load 64-bit version of dbx?
I am using the Linux version of dbxtool to debug a 64-bit programme called frankie:
file ../support/frankie
../support/frankie: ELF 64-bit LSB executable, AMD x86-64, version 1 (S …
2
votes
3answers
314 views
How can I execute a sql command with a blob param in dbx?
I have a TSqlDataSet which has a blob field, I need to get the data of this blob field in the BeforeUpdateRecord event of the provider and execute an update command, I've tried thi …
6
votes
7answers
5k views
Solaris Core dump analysis
I use pstack to analyze core dump files in Solaris
How else can I analyze the core dump from solaris?
What commands can be used to do this?
What other information will be availa …
5
votes
3answers
770 views
Displaying dereferenced STL iterators in gdb
I have an iterator to a map element, and I would like gdb to show me the values of the "first" and "second" elements of that iterator.
For example:
std::map<int,double> aMap …
2
votes
4answers
370 views
Is it possible to create databases programmatically using DBX?
Looks like the TSQLConnection only connects to existing databases, and I could not find another component that allows me to send commands to the database server.
I'm using Delphi …
2
votes
2answers
168 views
tb_event_death when single stepping in dbx
When I am single stepping through one thread of a multi threaded program, the debugger gets interrupted with:
0x(some hex ref) : tdb_event_death : ret
dbx: thread has exited …
0
votes
2answers
251 views
Why sometimes I get an “Invalid transaction object” exception?
Is there something wrong with this code?
Sometimes I get an unhandled "Invalid transaction object" exception in it:
procedure BlaBla;
var
TD: TDBXTransaction;
begin
TD := SQLC …
1
vote
4answers
482 views
how to get as much as possible from dbx
I do TDD on a daily basis for my C++ development on Solaris10. It has greatly reduced the time I have to spend using my debugger but sometime this is the only option.
DBX is prett …
1
vote
2answers
235 views
How do you put a breakpoint on a memory location in dbx?
A co-worker has a C program that fails in a predictable manner because of some corrupted memory. He'd like to use dbx to monitor the memory location once it's allocated in order t …
