Page 1 of 1

Determining static variables from CEE dump file

PostPosted: Tue Dec 21, 2010 9:37 am
by gmold
Hi,

I'm trying to determine the value of a C static variable using

1. CEE dump and
2. the applicable compiler listing
3. the zOS v1.9 instructions at http://publib.boulder.ibm.com/infocente ... 0/fvar.htm

My compiler listing has the following location information for my static variable -

fred 340-0:340 Class = static, Location = 7076 + WSA + Q(iknl#S), Length = 4

I can find the WSA address in the dump -

WSA ADDRESS.................1F7B2758

I can add 7076 (decimal) to get 0x1F7B42FC

Now it turns pear shaped :-(

I cannot find 0x1F7B42FC in the dump file (anywhere), nor do I know what + Q(iknl#S) means!

The + Q(iknl#S) is not mentioned anywhere in the doco.

Any ideas anyone?

Thanks,
Greg