[TCPIP]
[reactos.git] / reactos / drivers / network / tcpip / tcpip / wait.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS TCP/IP protocol driver
4 * FILE: tcpip/lock.c
5 * PURPOSE: Waiting and signalling
6 * PROGRAMMERS: Art Yerkes
7 * REVISIONS:
8 */
9
10 #include "precomp.h"
11
12 NTSTATUS TcpipWaitForSingleObject( PVOID Object,
13 KWAIT_REASON Reason,
14 KPROCESSOR_MODE WaitMode,
15 BOOLEAN Alertable,
16 PLARGE_INTEGER Timeout ) {
17 return KeWaitForSingleObject
18 ( Object, Reason, WaitMode, Alertable, Timeout );
19 }