dbb1b93fd0e7dec42c4e7becfaef991b045a63c9
[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 #include "precomp.h"
10
11 NTSTATUS TcpipWaitForSingleObject( PVOID Object,
12 KWAIT_REASON Reason,
13 KPROCESSOR_MODE WaitMode,
14 BOOLEAN Alertable,
15 PLARGE_INTEGER Timeout ) {
16 return KeWaitForSingleObject
17 ( Object, Reason, WaitMode, Alertable, Timeout );
18 }