diff options
| author | John Birrell <jb@FreeBSD.org> | 1998-06-09 08:32:23 +0000 |
|---|---|---|
| committer | John Birrell <jb@FreeBSD.org> | 1998-06-09 08:32:23 +0000 |
| commit | 86af3ff9b02305be8809a6d60daf988b5eebe5ca (patch) | |
| tree | 8e7500ffc2fe4763a2cb442197c7578af57c61c3 /lib/libc/gen/_spinlock_stub.c | |
| parent | 3d853e107ed067aeb59f767757ef1a0c8819881f (diff) | |
Notes
Diffstat (limited to 'lib/libc/gen/_spinlock_stub.c')
| -rw-r--r-- | lib/libc/gen/_spinlock_stub.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/gen/_spinlock_stub.c b/lib/libc/gen/_spinlock_stub.c index 5314d85c79c0..a189eef7f2e1 100644 --- a/lib/libc/gen/_spinlock_stub.c +++ b/lib/libc/gen/_spinlock_stub.c @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: _spinlock_stub.c,v 1.1 1998/03/09 06:46:21 jb Exp $ + * $Id: _spinlock_stub.c,v 1.2 1998/04/29 09:02:16 jb Exp $ * */ @@ -44,21 +44,21 @@ * with libpthread. */ #pragma weak _spinlock=_spinlock_stub -#pragma weak _atomic_unlock=_atomic_unlock_stub +#pragma weak _spinlock_debug=_spinlock_debug_stub /* * This function is a stub for the spinlock function in libpthread. */ void -_spinlock_stub(long *lck) +_spinlock_stub(spinlock_t *lck) { } /* - * This function is a stub for the _atomic_unlock function in libpthread. + * This function is a stub for the debug spinlock function in libpthread. */ void -_atomic_unlock_stub(long *lck) +_spinlock_debug_stub(spinlock_t *lck, char *fname, int lineno) { } #endif |
