Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers...
[reactos.git] / hal / halarm / generic / fmutex.c
diff --git a/hal/halarm/generic/fmutex.c b/hal/halarm/generic/fmutex.c
new file mode 100644 (file)
index 0000000..1187288
--- /dev/null
@@ -0,0 +1,46 @@
+/*
+ * PROJECT:         ReactOS HAL
+ * LICENSE:         BSD - See COPYING.ARM in the top level directory
+ * FILE:            hal/halarm/generic/fmutex.c
+ * PURPOSE:         Fast Mutex Support
+ * PROGRAMMERS:     ReactOS Portable Systems Group
+ */
+
+/* INCLUDES *******************************************************************/
+
+#include <hal.h>
+#define NDEBUG
+#include <debug.h>
+
+#undef ExAcquireFastMutex
+#undef ExReleaseFastMutex
+#undef ExTryToAcquireFastMutex
+
+/* FUNCTIONS ******************************************************************/
+
+VOID
+FASTCALL
+ExAcquireFastMutex(IN PFAST_MUTEX FastMutex)
+{
+    UNIMPLEMENTED;
+    while (TRUE);
+}
+
+VOID
+FASTCALL
+ExReleaseFastMutex(IN PFAST_MUTEX FastMutex)
+{
+    UNIMPLEMENTED;
+    while (TRUE);
+}
+
+BOOLEAN
+FASTCALL
+ExTryToAcquireFastMutex(IN PFAST_MUTEX FastMutex)
+{
+    UNIMPLEMENTED;
+    while (TRUE);
+    return TRUE;
+}
+
+/* EOF */