pull-prototypes-to-head-20020821
[openafs.git] / src / rx / rx_user.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 #ifdef  VALIDATE
11 error-foo error-foo error-foo
12 #endif /* VALIDATE */
13 #ifndef RX_USER_INCLUDE
14 #define RX_USER_INCLUDE
15
16 /* rx_user.h:  definitions specific to the user-level implementation of Rx */
17
18 #include <afs/param.h>
19 #include <stdio.h>
20 #include <stdlib.h>     /* for malloc() */
21 #include <lwp.h>
22
23 /* These routines are no-ops in the user level implementation */
24 #define SPLVAR
25 #define NETPRI
26 #define USERPRI
27
28 #define AFS_GLOCK()
29 #define AFS_GUNLOCK()
30 #define ISAFS_GLOCK()
31 #define AFS_ASSERT_GLOCK()
32
33 #define AFS_RXGLOCK()
34 #define AFS_RXGUNLOCK()
35 #define ISAFS_RXGLOCK()
36 #define AFS_ASSERT_RXGLOCK()
37
38 /* Some "operating-system independent" stuff, for the user mode implementation */
39 #ifdef UAFS_CLIENT
40 typedef void *osi_socket;
41 #define OSI_NULLSOCKET  ((osi_socket) 0)
42 #else /* UAFS_CLIENT */
43 typedef afs_int32 osi_socket;
44 #define OSI_NULLSOCKET  ((osi_socket) -1)
45 #endif /* UAFS_CLIENT */
46
47 #define osi_rxSleep(x)              rxi_Sleep(x)
48 #define osi_rxWakeup(x)             rxi_Wakeup(x)
49
50 #ifndef AFS_AIX32_ENV
51
52 #ifndef osi_Alloc
53 #define osi_Alloc(size)             malloc(size)
54 #endif
55
56 #ifndef osi_Free
57 #define osi_Free(ptr, size)         free(ptr)
58 #endif
59
60 #endif
61
62 #define osi_GetTime(timevalptr)     gettimeofday(timevalptr, 0)
63
64 /* Just in case it's possible to distinguish between relatively long-lived stuff and stuff which will be freed very soon, but which needs quick allocation (e.g. dynamically allocated xdr things) */
65 #define osi_QuickFree(ptr, size)    osi_Free(ptr, size)
66 #define osi_QuickAlloc(size)        osi_Alloc(size)
67
68 #define osi_Assert(e) (void)((e) || (osi_AssertFailU(#e, __FILE__, __LINE__), 0))
69
70 #if  !defined(_ANSI_C_SOURCE) || defined(AFS_SUN_ENV)
71 #if defined(AFS_SUN_ENV) && !defined(AFS_SUN5_ENV)
72 extern int fprintf();
73 #endif
74 #endif  /* ANSI_C_SOURCE */
75
76 #define osi_Msg                     fprintf)(stderr,
77
78 #endif /* RX_USER_INCLUDE */