ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

condvar.c
Go to the documentation of this file.
00001 /*
00002  * COPYRIGHT:         See COPYING in the top level directory
00003  * PROJECT:           ReactOS system libraries
00004  * PURPOSE:           Condition Variable Routines
00005  * PROGRAMMER:        Thomas Weidenmueller <w3seek@reactos.com>
00006  */
00007 
00008 /* INCLUDES *****************************************************************/
00009 
00010 #include <rtl.h>
00011 
00012 #define NDEBUG
00013 #include <debug.h>
00014 
00015 /* FUNCTIONS *****************************************************************/
00016 
00017 VOID
00018 NTAPI
00019 RtlInitializeConditionVariable(OUT PRTL_CONDITION_VARIABLE ConditionVariable)
00020 {
00021     ConditionVariable->Ptr = NULL;
00022 }
00023 
00024 
00025 VOID
00026 NTAPI
00027 RtlWakeConditionVariable(IN OUT PRTL_CONDITION_VARIABLE ConditionVariable)
00028 {
00029     UNIMPLEMENTED;
00030 }
00031 
00032 
00033 VOID
00034 NTAPI
00035 RtlWakeAllConditionVariable(IN OUT PRTL_CONDITION_VARIABLE ConditionVariable)
00036 {
00037     UNIMPLEMENTED;
00038 }
00039 
00040 
00041 NTSTATUS
00042 NTAPI
00043 RtlSleepConditionVariableCS(IN OUT PRTL_CONDITION_VARIABLE ConditionVariable,
00044                             IN OUT PRTL_CRITICAL_SECTION CriticalSection,
00045                             IN PLARGE_INTEGER TimeOut  OPTIONAL)
00046 {
00047     UNIMPLEMENTED;
00048     return STATUS_NOT_IMPLEMENTED;
00049 }
00050 
00051 
00052 NTSTATUS
00053 NTAPI
00054 RtlSleepConditionVariableSRW(IN OUT PRTL_CONDITION_VARIABLE ConditionVariable,
00055                              IN OUT PRTL_SRWLOCK SRWLock,
00056                              IN PLARGE_INTEGER TimeOut  OPTIONAL,
00057                              IN ULONG Flags)
00058 {
00059     UNIMPLEMENTED;
00060     return STATUS_NOT_IMPLEMENTED;
00061 }

Generated on Sun May 27 2012 04:36:21 for ReactOS by doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.