1 /* Linuxthreads - a simple clone()-based implementation of Posix */
2 /* threads for Linux. */
3 /* Copyright (C) 1998 Xavier Leroy (Xavier.Leroy@inria.fr) */
5 /* This program is free software; you can redistribute it and/or */
6 /* modify it under the terms of the GNU Library General Public License */
7 /* as published by the Free Software Foundation; either version 2 */
8 /* of the License, or (at your option) any later version. */
10 /* This program is distributed in the hope that it will be useful, */
11 /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
12 /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
13 /* GNU Library General Public License for more details. */
17 extern void __pthread_lock(struct _pthread_fastlock
* lock
);
18 extern int __pthread_trylock(struct _pthread_fastlock
* lock
);
19 extern void __pthread_unlock(struct _pthread_fastlock
* lock
);
21 static inline void __pthread_init_lock(struct _pthread_fastlock
* lock
)
27 #define LOCK_INITIALIZER {0, 0}
29 #if defined(TEST_FOR_COMPARE_AND_SWAP)
31 extern int __pthread_has_cas
;
32 extern int __pthread_compare_and_swap(long * ptr
, long oldval
, long newval
,
35 static inline int compare_and_swap(long * ptr
, long oldval
, long newval
,
38 if (__pthread_has_cas
)
39 return __compare_and_swap(ptr
, oldval
, newval
);
41 return __pthread_compare_and_swap(ptr
, oldval
, newval
, spinlock
);
44 #elif defined(HAS_COMPARE_AND_SWAP)
46 static inline int compare_and_swap(long * ptr
, long oldval
, long newval
,
49 return __compare_and_swap(ptr
, oldval
, newval
);
54 extern int __pthread_compare_and_swap(long * ptr
, long oldval
, long newval
,
57 static inline int compare_and_swap(long * ptr
, long oldval
, long newval
,
60 return __pthread_compare_and_swap(ptr
, oldval
, newval
, spinlock
);