mirror of
https://github.com/reactos/reactos.git
synced 2025-08-08 21:53:02 +00:00
18 lines
440 B
C
18 lines
440 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 STATUS_SUCCESS;
|
|
}
|