]> arthur.barton.de Git - netatalk.git/blob - libatalk/adouble/ad_private.h
massive commenting/autoconf changes
[netatalk.git] / libatalk / adouble / ad_private.h
1 /*
2  * $Id: ad_private.h,v 1.2 2001-06-29 14:14:46 rufustfirefly Exp $
3  */
4
5 #ifndef LIBATALK_ADOUBLE_AD_PRIVATE_H
6 #define LIBATALK_ADOUBLE_AD_PRIVATE_H 1
7
8 #include <atalk/adouble.h>
9
10 #ifndef MAP_FAILED
11 #define MAP_FAILED ((void *) -1)
12 #endif /* ! MAP_FAILED */
13
14 #ifndef __inline__
15 #define __inline__
16 #endif /* ! __inline__ */
17
18 /* this is so that we can keep lists of fds referencing the same file
19  * around. that way, we can honor locks created by the same process
20  * with the same file. */
21 #ifdef USE_FLOCK_LOCKS
22 #define adf_lock_init(a)
23 #define adf_lock_free(a)
24 #else /* USE_FLOCK_LOCKS */
25
26 #define adf_lock_init(a) do { \
27         (a)->adf_lockmax = (a)->adf_lockcount = 0; \
28         (a)->adf_lock = NULL; \
29 } while (0)
30
31 #define adf_lock_free(a) do { \
32         if (!(a)->adf_lock) \
33                 break; \
34         free((a)->adf_lock); \
35         adf_lock_init(a); \
36 } while (0)
37 #endif /* USE_FLOCK_LOCKS */
38
39 #endif /* libatalk/adouble/ad_private.h */