Rev 3452 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3452 | Rev 3455 | ||
|---|---|---|---|
| Line 33... | Line 33... | ||
| 33 | */ |
33 | */ |
| 34 | 34 | ||
| 35 | #ifndef TRACE_H_ |
35 | #ifndef TRACE_H_ |
| 36 | #define TRACE_H_ |
36 | #define TRACE_H_ |
| 37 | 37 | ||
| - | 38 | #include <sys/types.h> |
|
| - | 39 | ||
| 38 | /** |
40 | /** |
| 39 | * Classes of events that can be displayed. Can be or-ed together. |
41 | * Classes of events that can be displayed. Can be or-ed together. |
| 40 | */ |
42 | */ |
| 41 | typedef enum { |
43 | typedef enum { |
| 42 | 44 | ||
| Line 59... | Line 61... | ||
| 59 | } val_type_t; |
61 | } val_type_t; |
| 60 | 62 | ||
| 61 | /** Combination of events to print. */ |
63 | /** Combination of events to print. */ |
| 62 | extern display_mask_t display_mask; |
64 | extern display_mask_t display_mask; |
| 63 | 65 | ||
| 64 | void val_print(int val, val_type_t v_type); |
66 | void val_print(sysarg_t val, val_type_t v_type); |
| 65 | 67 | ||
| 66 | #endif |
68 | #endif |
| 67 | 69 | ||
| 68 | /** @} |
70 | /** @} |
| 69 | */ |
71 | */ |