Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm debugging my C program using dbx on Solaris, and I'd like to be able to see the contents of a data structure.

It's a local data structure in the function that's in scope, so typing "dump" shows a pointer to the structure. However, I'd like to look at the contents of various fields within it. How can I do that?

share|improve this question

2 Answers

up vote 2 down vote accepted

Generally the 'print' command offers the best functionality for this kind of thing. If your local pointer variable is called 'p', then use "print *p". The argument to print can be any language expression, for example "print p->buf" or "print p->buf[3]"

share|improve this answer
Easy when you know how. Thanks! – thomson_matt Jun 20 '11 at 20:14

Assuming your structure pointer variable is called struct_ptr, does this work?

dump *struct_ptr
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.