[TCPIP] Fix global synchronization on SMP

We cannot just raise IRQL! Instead use a global ERESOURCE, which allows to be acquired recursively, as required by LWIP.
This commit is contained in:
Timo Kreuzer 2025-07-18 12:47:42 +03:00
parent b4731b7f8f
commit 069fc049db
2 changed files with 10 additions and 4 deletions

View file

@ -15,7 +15,7 @@ typedef struct _sys_mbox_t
int Valid;
} sys_mbox_t;
typedef KIRQL sys_prot_t;
typedef u32_t sys_prot_t;
typedef u32_t sys_thread_t;