1 /* 2 * Copyright (c) 1997 John Birrell <jb@cimlogic.com.au>. 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 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. 13 * 3. All advertising materials mentioning features or use of this software 14 * must display the following acknowledgement: 15 * This product includes software developed by John Birrell. 16 * 4. Neither the name of the author nor the names of any co-contributors 17 * may be used to endorse or promote products derived from this software 18 * without specific prior written permission. 19 * 20 * THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND 21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 30 * SUCH DAMAGE. 31 * 32 * $FreeBSD$ 33 * 34 */ 35 36 #include <stdlib.h> 37 #include <stdio.h> 38 #include <string.h> 39 #include <sched.h> 40 #include <pthread.h> 41 #include <unistd.h> 42 43 #include <libc_private.h> 44 45 #include "thr_private.h" 46 47 void 48 _spinunlock(spinlock_t *lck) 49 { 50 _spinunlock_pthread(curthread, lck); 51 } 52 53 inline void 54 _spinunlock_pthread(pthread_t pthread, spinlock_t *lck) 55 { 56 if (umtx_unlock((struct umtx *)lck, pthread->thr_id)) 57 abort(); 58 } 59 60 /* 61 * Lock a location for the running thread. Yield to allow other 62 * threads to run if this thread is blocked because the lock is 63 * not available. Note that this function does not sleep. It 64 * assumes that the lock will be available very soon. 65 */ 66 void 67 _spinlock(spinlock_t *lck) 68 { 69 _spinlock_pthread(curthread, lck); 70 } 71 72 int 73 _spintrylock(spinlock_t *lck) 74 { 75 int error; 76 error = umtx_trylock((struct umtx *)lck, curthread->thr_id); 77 if (error != 0 && error != EBUSY) 78 abort(); 79 return (error); 80 } 81 82 inline void 83 _spinlock_pthread(pthread_t pthread, spinlock_t *lck) 84 { 85 if (umtx_lock((struct umtx *)lck, pthread->thr_id)) 86 abort(); 87 } 88 89 /* 90 * Lock a location for the running thread. Yield to allow other 91 * threads to run if this thread is blocked because the lock is 92 * not available. Note that this function does not sleep. It 93 * assumes that the lock will be available very soon. 94 * 95 * This function checks if the running thread has already locked the 96 * location, warns if this occurs and creates a thread dump before 97 * returning. 98 */ 99 void 100 _spinlock_debug(spinlock_t *lck, char *fname, int lineno) 101 { 102 if (umtx_lock((struct umtx *)lck, curthread->thr_id)) 103 abort(); 104 } 105