|
23 | 23 | |
24 | 24 | ============================================================================*/ |
25 | 25 | /*! |
26 | | -* @date Last updated on: 2022-08-22 |
27 | | -* @version Last updated for version: 7.1.0 |
| 26 | +* @date Last updated on: 2022-09-05 |
| 27 | +* @version Last updated for version: 7.1.1 |
28 | 28 | * |
29 | 29 | * @file |
30 | 30 | * @brief main for QSPY host utility |
|
36 | 36 | #include <stdbool.h> |
37 | 37 | #include <time.h> |
38 | 38 |
|
39 | | -#include "safe_std.h" /* "safe" <stdio.h> and <string.h> facilities */ |
40 | | -#include "qspy.h" /* QSPY data parser */ |
41 | | -#include "be.h" /* Back-End interface */ |
42 | | -#include "pal.h" /* Platform Abstraction Layer */ |
43 | | -#include "getopt.h" /* command-line option processor */ |
| 39 | +#include "safe_std.h" /* "safe" <stdio.h> and <string.h> facilities */ |
| 40 | +#include "qspy.h" /* QSPY data parser */ |
| 41 | +#include "be.h" /* Back-End interface */ |
| 42 | +#include "pal.h" /* Platform Abstraction Layer */ |
| 43 | +#include "getopt.h" /* command-line option processor */ |
44 | 44 |
|
45 | 45 | #define Q_SPY 1 /* this is QP implementation */ |
46 | 46 | #define QP_IMPL 1 /* this is QP implementation */ |
@@ -122,7 +122,7 @@ static char const l_helpStr[] = |
122 | 122 | "-Q <counter_size> 1 queue counter size (bytes)\n" |
123 | 123 | "-P <counter_size> 2 pool counter size (bytes)\n" |
124 | 124 | "-B <block_size> 2 pool block-size size (bytes)\n" |
125 | | - "-C <counter_size> 2 QTimeEvt counter size (bytes)\n"; |
| 125 | + "-C <counter_size> 4 QTimeEvt counter size (bytes)\n"; |
126 | 126 |
|
127 | 127 | static char const l_kbdHelpStr[] = |
128 | 128 | "Keyboard shortcuts (valid when -k option is absent):\n" |
@@ -305,7 +305,7 @@ static QSpyStatus configure(int argc, char *argv[]) { |
305 | 305 | .queueCtrSize = 1U, |
306 | 306 | .poolCtrSize = 2U, |
307 | 307 | .poolBlkSize = 2U, |
308 | | - .tevtCtrSize = 2U, |
| 308 | + .tevtCtrSize = 4U, |
309 | 309 | }; |
310 | 310 | int optChar; |
311 | 311 |
|
|
0 commit comments