reactos/drivers/network/tcpip
Jérôme Gardou 27fcfe66a2 [TCPIP][IP] Use an ERESOURCE as mutex for address files & connection end points
Spinlocks are not reentrant (and this is done a lot), using them forces us to have
an horrible hack in the kernel, which unschedules threads which are at DISPATCH_LEVEL
thus allowing another thread to take ownership of the spinlock while the unscheduled
thread should already hold it.

CORE-6473
2021-06-21 11:42:01 +02:00
..
datalink [FORMATTING][NTOS][HAL][DRIVERS][SDK] Fix trailing spaces 2021-06-11 15:33:08 +03:00
include [TCPIP][IP] Use an ERESOURCE as mutex for address files & connection end points 2021-06-21 11:42:01 +02:00
tcpip [TCPIP][IP] Use an ERESOURCE as mutex for address files & connection end points 2021-06-21 11:42:01 +02:00
tests
.clang-format [REACTOS] Exclude some modules from clang-format 2019-12-28 01:23:49 +02:00
CMakeLists.txt [TCPIP] Implement IOCTL_ICMP_ECHO_REQUEST in tcpip.sys 2020-04-07 05:32:40 +03:00
DIRS
notes.txt
readme.txt
tcpip.rc
tcpip.spec

Build instructions for TCP/IP protocol driver
---------------------------------------------

Building with Visual C++ and Windows NT DDK:

Variables:
%BASEDIR%     = path to NT4 DDK (e.g. c:\ntddk)
%DDKBUILDENV% = DDK build environment (free or checked)

DDK environment variables must be set! (run setenv.bat)

    - Create the directory objects/i386/%DDKBUILDENV%
    - Run "build" to build the driver


Building with Mingw32 and ReactOS include files:

    - Build NDIS.SYS (i.e. "make ndis")
    - Run "make tcpip" FROM THE ReactOS ROOT DIRECTORY to build the driver