2017-11-20 14:49:47 -05:00
|
|
|
/*-
|
|
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
*
|
1998-03-09 01:46:21 -05:00
|
|
|
* Copyright (c) 1998 John Birrell <jb@cimlogic.com.au>.
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
|
* are met:
|
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2007-01-12 02:31:30 -05:00
|
|
|
* 3. Neither the name of the author nor the names of any co-contributors
|
1998-03-09 01:46:21 -05:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
|
* without specific prior written permission.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
|
*/
|
|
|
|
|
|
2002-01-31 19:57:29 -05:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
|
1998-03-09 01:46:21 -05:00
|
|
|
#include <stdio.h>
|
1998-04-29 05:02:16 -04:00
|
|
|
|
1998-03-09 01:46:21 -05:00
|
|
|
#include "spinlock.h"
|
2015-02-14 06:47:40 -05:00
|
|
|
#include "libc_private.h"
|
1998-03-09 01:46:21 -05:00
|
|
|
|
2010-03-31 14:36:04 -04:00
|
|
|
long _atomic_lock_stub(volatile long *);
|
|
|
|
|
void _spinlock_stub(spinlock_t *);
|
|
|
|
|
void _spinunlock_stub(spinlock_t *);
|
|
|
|
|
|
2001-04-10 00:11:50 -04:00
|
|
|
__weak_reference(_atomic_lock_stub, _atomic_lock);
|
|
|
|
|
|
2001-01-24 08:01:12 -05:00
|
|
|
long
|
2010-03-31 14:36:04 -04:00
|
|
|
_atomic_lock_stub(volatile long *lck __unused)
|
2001-01-24 08:01:12 -05:00
|
|
|
{
|
|
|
|
|
return (0L);
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-14 06:47:40 -05:00
|
|
|
#pragma weak _spinlock
|
|
|
|
|
void
|
|
|
|
|
_spinlock(spinlock_t *lck)
|
|
|
|
|
{
|
2001-01-24 08:01:12 -05:00
|
|
|
|
2015-02-14 06:47:40 -05:00
|
|
|
((void (*)(spinlock_t *lck))__libc_interposing[INTERPOS_spinlock])
|
|
|
|
|
(lck);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-27 14:23:01 -05:00
|
|
|
#pragma weak _spinunlock
|
1998-03-09 01:46:21 -05:00
|
|
|
void
|
2015-02-14 06:47:40 -05:00
|
|
|
_spinunlock(spinlock_t *lck)
|
1998-03-09 01:46:21 -05:00
|
|
|
{
|
2015-02-14 06:47:40 -05:00
|
|
|
|
|
|
|
|
((void (*)(spinlock_t *lck))__libc_interposing[INTERPOS_spinunlock])
|
|
|
|
|
(lck);
|
|
|
|
|
|
1998-03-09 01:46:21 -05:00
|
|
|
}
|
|
|
|
|
|
2003-03-25 23:02:24 -05:00
|
|
|
void
|
2015-02-14 06:47:40 -05:00
|
|
|
__libc_spinlock_stub(spinlock_t *lck __unused)
|
2003-03-25 23:02:24 -05:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
1998-03-09 01:46:21 -05:00
|
|
|
void
|
2015-02-14 06:47:40 -05:00
|
|
|
__libc_spinunlock_stub(spinlock_t *lck __unused)
|
1998-03-09 01:46:21 -05:00
|
|
|
{
|
|
|
|
|
}
|