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

fmutex.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 doxygen 1.7.6.1

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