Changeset abf3564 in mainline for uspace/app/trace/trace.h


Ignore:
Timestamp:
2008-09-18T22:19:42Z (16 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f7176b1
Parents:
073c9e6
Message:

trace: Decode protocol-level call arguments, response retvals and arguments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/trace/trace.h

    r073c9e6 rabf3564  
    4949} display_mask_t;
    5050
     51typedef enum {
     52        V_VOID,
     53        V_INTEGER,
     54        V_PTR,
     55        V_HASH,
     56        V_ERRNO,
     57        V_INT_ERRNO,
     58        V_CHAR
     59} val_type_t;
     60
    5161/** Combination of events to print. */
    5262extern display_mask_t display_mask;
     63
     64void val_print(int val, val_type_t v_type);
    5365
    5466#endif
Note: See TracChangeset for help on using the changeset viewer.