Fix mutex assertion
[openafs.git] / src / rx / rx_lwp.h
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  *
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 /*
11  * rx_lwp.h - mutexes and condition variables do not exist for LWP.
12  */
13
14 #ifndef _RX_LWP_H_
15 #define _RX_LWP_H_
16
17 /* KDUMP_KERNEL is defined when kdump includes this header. */
18 #ifndef KDUMP_KERNEL
19
20 typedef int afs_kmutex_t;
21
22 #define CALL_HOLD(call, type)
23 #define CALL_HOLD_R(call, type)
24 #define CALL_RELE(call, type)
25 #define CALL_RELE_R(call, type)
26
27 #define MUTEX_DESTROY(a)
28 #define MUTEX_ENTER(a)
29 #define MUTEX_TRYENTER(a) 1
30 #define MUTEX_EXIT(a)
31 #define MUTEX_INIT(a,b,c,d)
32 #define MUTEX_ASSERT(a)
33 #define CV_INIT(a,b,c,d)
34 #define CV_DESTROY(a)
35 #define CV_WAIT(cv, l)
36 #define CV_SIGNAL(cv)
37 #define CV_BROADCAST(cv)
38 #define CV_TIMEDWAIT(cv, l, t)
39
40 #endif /* KERNEL */
41
42 #endif /* _RX_LWP_H_ */