Subversion Repositories HelenOS

Rev

Rev 3444 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3444 Rev 3452
Line 46... Line 46...
46
    DM_SYSTEM   = 8,    /**< Sysipc protocol */
46
    DM_SYSTEM   = 8,    /**< Sysipc protocol */
47
    DM_USER     = 16    /**< User IPC protocols */
47
    DM_USER     = 16    /**< User IPC protocols */
48
 
48
 
49
} display_mask_t;
49
} display_mask_t;
50
 
50
 
-
 
51
typedef 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
 
51
/** Combination of events to print. */
61
/** Combination of events to print. */
52
extern display_mask_t display_mask;
62
extern display_mask_t display_mask;
53
 
63
 
-
 
64
void val_print(int val, val_type_t v_type);
-
 
65
 
54
#endif
66
#endif
55
 
67
 
56
/** @}
68
/** @}
57
 */
69
 */