reactos/drivers/network/tcpip/tcpip/wait.c

19 lines
497 B
C

/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS TCP/IP protocol driver
* FILE: tcpip/lock.c
* PURPOSE: Waiting and signalling
* PROGRAMMERS: Art Yerkes
* REVISIONS:
*/
#include "precomp.h"
NTSTATUS TcpipWaitForSingleObject( PVOID Object,
KWAIT_REASON Reason,
KPROCESSOR_MODE WaitMode,
BOOLEAN Alertable,
PLARGE_INTEGER Timeout ) {
return KeWaitForSingleObject
( Object, Reason, WaitMode, Alertable, Timeout );
}