blob: 50d5252840bce4999ef6583559c81aa8365f4f69 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001--- 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);