Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenfmutex.c
Go to the documentation of this file.
00001 /* 00002 * PROJECT: ReactOS HAL 00003 * LICENSE: BSD - See COPYING.ARM in the top level directory 00004 * FILE: hal/halarm/generic/fmutex.c 00005 * PURPOSE: Fast Mutex Support 00006 * PROGRAMMERS: ReactOS Portable Systems Group 00007 */ 00008 00009 /* INCLUDES *******************************************************************/ 00010 00011 #include <hal.h> 00012 #define NDEBUG 00013 #include <debug.h> 00014 00015 #undef ExAcquireFastMutex 00016 #undef ExReleaseFastMutex 00017 #undef ExTryToAcquireFastMutex 00018 00019 /* FUNCTIONS ******************************************************************/ 00020 00021 VOID 00022 FASTCALL 00023 ExAcquireFastMutex(IN PFAST_MUTEX FastMutex) 00024 { 00025 UNIMPLEMENTED; 00026 while (TRUE); 00027 } 00028 00029 VOID 00030 FASTCALL 00031 ExReleaseFastMutex(IN PFAST_MUTEX FastMutex) 00032 { 00033 UNIMPLEMENTED; 00034 while (TRUE); 00035 } 00036 00037 BOOLEAN 00038 FASTCALL 00039 ExTryToAcquireFastMutex(IN PFAST_MUTEX FastMutex) 00040 { 00041 UNIMPLEMENTED; 00042 while (TRUE); 00043 return TRUE; 00044 } 00045 00046 /* EOF */ Generated on Sun May 27 2012 04:28:40 for ReactOS by
1.7.6.1
|