mirror of
https://github.com/reactos/reactos.git
synced 2025-08-10 15:13:16 +00:00
19 lines
497 B
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 );
|
|
}
|