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. */
15 #if defined(TEST_FOR_COMPARE_AND_SWAP)
17 extern int __pthread_has_cas;
18 extern int __pthread_compare_and_swap(long * ptr, long oldval, long newval,
21 static inline int compare_and_swap(long * ptr, long oldval, long newval,
24 if (__builtin_expect (__pthread_has_cas, 1))
25 return __compare_and_swap(ptr, oldval, newval);
27 return __pthread_compare_and_swap(ptr, oldval, newval, spinlock);
30 #elif defined(HAS_COMPARE_AND_SWAP)
32 static inline int compare_and_swap(long * ptr, long oldval, long newval,
35 return __compare_and_swap(ptr, oldval, newval);
40 extern int __pthread_compare_and_swap(long * ptr, long oldval, long newval,
43 static inline int compare_and_swap(long * ptr, long oldval, long newval,
46 return __pthread_compare_and_swap(ptr, oldval, newval, spinlock);
53 extern void internal_function __pthread_lock(struct _pthread_fastlock * lock,
55 extern void internal_function __pthread_unlock(struct _pthread_fastlock *lock);
57 static inline void __pthread_init_lock(struct _pthread_fastlock * lock)
63 static inline int __pthread_trylock (struct _pthread_fastlock * lock)
68 oldstatus = lock->__status;
69 if (oldstatus != 0) return EBUSY;
70 } while(! compare_and_swap(&lock->__status, 0, 1, &lock->__spinlock));
74 #define LOCK_INITIALIZER {0, 0}