mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
[LWIP]
- Don't use the already over-used LWIP_TAG for lookaside list allocations svn path=/trunk/; revision=70696
This commit is contained in:
parent
9a5b681194
commit
cab26c80f1
2 changed files with 5 additions and 3 deletions
|
@ -7,7 +7,9 @@
|
|||
#include "tcpip.h"
|
||||
|
||||
#ifndef LWIP_TAG
|
||||
#define LWIP_TAG 'PIwl'
|
||||
#define LWIP_TAG 'PIwl'
|
||||
#define LWIP_MESSAGE_TAG 'sMwl'
|
||||
#define LWIP_QUEUE_TAG 'uQwl'
|
||||
#endif
|
||||
|
||||
typedef struct tcp_pcb* PTCP_PCB;
|
||||
|
|
|
@ -321,7 +321,7 @@ sys_init(void)
|
|||
NULL,
|
||||
0,
|
||||
sizeof(struct lwip_callback_msg),
|
||||
LWIP_TAG,
|
||||
LWIP_MESSAGE_TAG,
|
||||
0);
|
||||
|
||||
ExInitializeNPagedLookasideList(&QueueEntryLookasideList,
|
||||
|
@ -329,7 +329,7 @@ sys_init(void)
|
|||
NULL,
|
||||
0,
|
||||
sizeof(QUEUE_ENTRY),
|
||||
LWIP_TAG,
|
||||
LWIP_QUEUE_TAG,
|
||||
0);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue