Standardize comment headers. Patch by Trevor McCort
[reactos.git] / reactos / ntoskrnl / ex / synch.c
1 /* $Id:$
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS kernel
5 * FILE: ntoskrnl/ex/synch.c
6 * PURPOSE: Synchronization Functions (Pushlocks)
7 *
8 * PROGRAMMERS: No programmer listed.
9 */
10
11 /* INCLUDES *****************************************************************/
12
13 #include <ntoskrnl.h>
14 #define NDEBUG
15 #include <internal/debug.h>
16
17 /* FUNCTIONS *****************************************************************/
18
19 /*
20 * @unimplemented
21 */
22 PVOID
23 FASTCALL
24 ExfAcquirePushLockExclusive (
25 PVOID Lock
26 )
27 {
28 UNIMPLEMENTED;
29 return NULL;
30 }
31
32 /*
33 * @unimplemented
34 */
35 PVOID
36 FASTCALL
37 ExfAcquirePushLockShared (
38 PVOID Lock
39 )
40 {
41 UNIMPLEMENTED;
42 return NULL;
43 }
44
45 /*
46 * @unimplemented
47 */
48 PVOID
49 FASTCALL
50 ExfReleasePushLock (
51 PVOID Lock
52 )
53 {
54 UNIMPLEMENTED;
55 return NULL;
56 }
57
58 /* EOF */