b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | --- a/pqueue.c |
2 | +++ b/pqueue.c | ||||
3 | @@ -7,13 +7,11 @@ | ||||
4 | #include "pqueue.h" | ||||
5 | |||||
6 | #ifdef DEBUG_PQUEUE | ||||
7 | -#define DEBUG_ON 1 | ||||
8 | +#define DEBUG_CMD(_a) { _a } | ||||
9 | #else | ||||
10 | -#define DEBUG_ON 0 | ||||
11 | +#define DEBUG_CMD(_a) | ||||
12 | #endif | ||||
13 | |||||
14 | -#define DEBUG_CMD(_a) if (DEBUG_ON) { _a } | ||||
15 | - | ||||
16 | #define MIN_CAPACITY 128 /* min allocated buffer for a packet */ | ||||
17 | |||||
18 | static int pqueue_alloc (int seq, unsigned char *packet, int packlen, pqueue_t **new); |