search for: mblks_t

Displaying 1 result from an estimated 1 matches for "mblks_t".

Did you mean: mblk_t
2007 Apr 26
1
requiring array indices be int64_t
...there any reason for dtrace to require me to have an explicit type conversion in there rather than having it do it for me automatically? At present I need to do: mblks[arg0] or mblks[(int64_t)((mblk_t *)arg0)->b_cont] whereas what I''d like to be able to do is: mblks[arg0] and mblks[((mblks_t *)arg0)->b_cont] and have dtrace worry about what b_cont needs to be transformed into in order for that to work. Darren