blob: a259b76e8ae9063a33427ada5ef64ee76b765d7f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/*
* VPC-XT Revision 2.0
*
* Title : Host Trace module definitions
*
* Description : Definitions for users of the trace module
*
* Author : WTG Charnell
*
* Notes : None
*/
/* SccsID[]="@(#)host_trace.h 1.5 8/2/90 Copyright Insignia Solutions Ltd."; */
/*
* ============================================================================
* Structure/Data definitions
* ============================================================================
*/
/*
* Verbose bit masks - set the following bits in the io_verbose
* variable to produce the following trace outputs:
*/
/* sub message types */
#define ASYNC_VERBOSE 0x1000 /* async event manager verbose */
#define PACEMAKER_VERBOSE 0x2000 /* pacemaker verbose */
#define HOST_PIPE_VERBOSE 0x10000
#define HOST_COM_VERBOSE 0x40000
#define HOST_COM_EXTRA 0x80000
|