Typedefs
TotalView recognizes the names defined with typedef, but displays the definition of the type (that is, the base data type), rather than its name. For example:
typedef double *dptr_t;
dptr_t p_vbl;
The debugger displays the type for p_vbl as double*, not as dptr_t.