Restriction:
Storage information is not available when debugging interpreted Java programs. It is
available when debugging High Performance Compiled (HPC) Java programs.
You can view the contents of storage from the Storage pane or from a new Storage Monitor pane that you have created.
To view the contents of storage from the Storage pane:
To view the contents of storage from a Storage Monitor pane that you have created:
To view the contents of a
C or C++ variable, such as an integer, in a Storage monitor precede the variable with an
ampersand (&), or select a pointer that points to that variable. For example, given
the following C or C++ source code:
int i=10; int* p=&i;
You can monitor the storage for the variable i by entering either &i or p in the Monitor expression dialog, then selecting the Storage monitor radio button in that dialog.
Changing the representation of storage contents
Changing the contents of a storage location
Creating a new Storage monitor for an expression or register