2 * Copyright (c) 2003 David Xu <davidxu@freebsd.org>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * $DragonFly: src/lib/libthread_xu/thread/thr_pspinlock.c,v 1.4 2006/04/06 13:03:09 davidxu Exp $
29 #include "namespace.h"
30 #include <machine/tls.h>
35 #include <pthread_np.h>
36 #include "un-namespace.h"
38 #include "thr_private.h"
40 #define SPIN_COUNT 100000
43 _pthread_spin_init(pthread_spinlock_t
*lock
, int pshared
)
45 struct pthread_spinlock
*lck
;
48 if (lock
== NULL
|| pshared
!= PTHREAD_PROCESS_PRIVATE
)
50 else if ((lck
= malloc(sizeof(struct pthread_spinlock
))) == NULL
)
53 _thr_umtx_init(&lck
->s_lock
);
62 _pthread_spin_destroy(pthread_spinlock_t
*lock
)
66 if (lock
== NULL
|| *lock
== NULL
)
78 _pthread_spin_trylock(pthread_spinlock_t
*lock
)
80 struct pthread
*curthread
= tls_get_curthread();
81 struct pthread_spinlock
*lck
;
84 if (lock
== NULL
|| (lck
= *lock
) == NULL
)
87 ret
= THR_UMTX_TRYLOCK(curthread
, &lck
->s_lock
);
92 _pthread_spin_lock(pthread_spinlock_t
*lock
)
94 struct pthread
*curthread
= tls_get_curthread();
95 struct pthread_spinlock
*lck
;
98 if (lock
== NULL
|| (lck
= *lock
) == NULL
)
102 while ((ret
= THR_UMTX_TRYLOCK(curthread
, &lck
->s_lock
)) != 0) {
103 while (lck
->s_lock
) {
105 /* tell cpu we are spinning */
106 __asm
__volatile("pause");
121 _pthread_spin_unlock(pthread_spinlock_t
*lock
)
123 struct pthread
*curthread
= tls_get_curthread();
124 struct pthread_spinlock
*lck
;
127 if (lock
== NULL
|| (lck
= *lock
) == NULL
)
130 THR_UMTX_UNLOCK(curthread
, &lck
->s_lock
);
136 __strong_reference(_pthread_spin_init
, pthread_spin_init
);
137 __strong_reference(_pthread_spin_destroy
, pthread_spin_destroy
);
138 __strong_reference(_pthread_spin_trylock
, pthread_spin_trylock
);
139 __strong_reference(_pthread_spin_lock
, pthread_spin_lock
);
140 __strong_reference(_pthread_spin_unlock
, pthread_spin_unlock
);