Initial original import from: fuse-2.4.2-2.fc4
[captive.git] / src / libcaptive / halcaptive / spinlock.c
1 /* $Id$
2  * reactos spinlock emulation of libcaptive
3  * Copyright (C) 2002 Jan Kratochvil <project-captive@jankratochvil.net>
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; exactly version 2 of June 1991 is required
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19
20 #include "config.h"
21
22 #include "reactos/ddk/kefuncs.h"        /* self */
23
24
25 /**
26  * KeAcquireSpinLockAtDpcLevel:
27  * @SpinLock: Spinlock to acquire
28  *
29  * Acquires a spinlock if the caller already runs on >= %DISPATCH_LEVEL.
30  * Currently libcaptive doesn't use multithreading
31  * and thus this function is a NOP now. #GMutex would be needed otherwise.
32  */
33 VOID KeAcquireSpinLockAtDpcLevel(PKSPIN_LOCK SpinLock)
34 {
35         /* TODO:thread */
36 }
37
38
39 /**
40  * KeReleaseSpinLockFromDpcLevel:
41  * @SpinLock: Spinlock to release
42  *
43  * Releases a spinlock if the caller already run on >= %DISPATCH_LEVEL
44  * during its acquire by KeAcquireSpinLockAtDpcLevel().
45  * Currently libcaptive doesn't use multithreading
46  * and thus this function is a NOP now. #GMutex would be needed otherwise.
47  */
48 VOID KeReleaseSpinLockFromDpcLevel(PKSPIN_LOCK SpinLock)
49 {
50         /* TODO:thread */
51 }