Hi!

I am using strace to get some information about ioctl calls. For some of them I get a structure, sent in the call but for the other just address of the structure.

For example:

Code:
ioctl(4, 0x31d, 0x82311d8)              = 0
ioctl(1, SNDCTL_TMR_STOP or TCSETSW, {B38400 opost isig icanon echo ...}) = 0
Is it possible to retrieve the content of the structure using strace, for those calls where I get just a memory address? If not, what is the other easiest way to do it?

--
Alexei