vote up 0 vote down star
1

Hi

I use a pointer to specify some kind of "shared memory" which I use to exchange data between different processes/threads. Now I would like to have a hex dump of the content of the shared buffer. Does anyone know how to do that?

thanks, R

flag
1  
Are you asking how to write a general purpose hex dump function? – Neil Butterworth Aug 17 at 8:17
Roughly speaking, I would say so ;). Basically, I would like to know how I can output the contents at a specific memory location, without knowing that type they are. – Robert Aug 17 at 8:21

2 Answers

vote up 4 vote down

Use casts, of course :-) The function should look something like this:

void Dump( const void * mem, unsigned int n ) {
  const char * p = reinterpret_cast< const char *>( mem );
  for ( unsigned int i = 0; i < n; i++ ) {
     std::cout << hex << int(p[i]) << " ";
  }
  std::cout << std::endl;
}

Then in use:

Foo * f = GetSharedFoo();
Dump( f, somesize );

where somesize is how much you want to dump.

link|flag
1  
Just looked into my toolbox. Mine also puts a std::setw(2) << std::setfill( os.widen('0') ) into the stream. But that might be because I write into stream with any character width. – sbi Aug 17 at 21:58
Yes, setting width & padding is a good idea, but has been discussed here several times before - I was concentrating on the casting of the thing being dumped. – Neil Butterworth Aug 18 at 7:45
vote up 0 vote down

On Windows, you can use ReadProcessMemory. I do not know the Linux equivalent.

link|flag

Your Answer

Get an OpenID
or

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