QP/C++ 6.9.3
qs_port.h
Go to the documentation of this file.
1 
40 #ifndef QS_PORT_H
41 #define QS_PORT_H
42 
43 /* QS time-stamp size in bytes */
44 #define QS_TIME_SIZE 4
45 
46 /* object pointer size in bytes */
47 #define QS_OBJ_PTR_SIZE 4
48 
49 /* function pointer size in bytes */
50 #define QS_FUN_PTR_SIZE 4
51 
52 /*****************************************************************************
53 * NOTE: QS might be used with or without other QP components, in which
54 * case the separate definitions of the macros QF_CRIT_STAT_TYPE,
55 * QF_CRIT_ENTRY, and QF_CRIT_EXIT are needed. In this port QS is configured
56 * to be used with the other QP component, by simply including "qf_port.h"
57 * *before* "qs.h".
58 */
59 #ifndef QF_PORT_H
60 #include "qf_port.h" /* use QS with QF */
61 #endif
62 
63 #include "qs.h" /* QS platform-independent public interface */
64 
65 #endif /* QS_PORT_H */