mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Sat Apr 1 00:08:06 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* locale/loadlocale.c (_nl_load_locale) [MAP_FILE]: Define it zero if undefined. * string/strxfrm.c: Just copy the string (for now). * string/strcoll.c: Just call strcmp (for now). * mach/Makefile (lock): Add mutex-init. * mach/mutex-solid.c (_cthread_mutex_lock_routine, _cthread_mutex_unlock_routine): Variables removed. (__mutex_lock_solid, __mutex_unlock_solid): Don't use them; just stub. (__mutex_init): Function moved to new file mutex-init.c. * mach/mutex-init.c: New file, broken out of mutex-solid.c.
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
/* Copyright (C) 1994 Free Software Foundation, Inc.
|
||||
/* Stub versions of mutex_lock_solid/mutex_unlock_solid for no -lthreads.
|
||||
Copyright (C) 1995 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
@ -19,32 +20,18 @@ Cambridge, MA 02139, USA. */
|
||||
#include <lock-intern.h>
|
||||
#include <cthreads.h>
|
||||
|
||||
/* If cthreads is linked in, it will define these variables with values
|
||||
that point to its mutex functions. */
|
||||
void (*_cthread_mutex_lock_routine) (struct mutex *);
|
||||
void (*_cthread_mutex_unlock_routine) (struct mutex *);
|
||||
/* If cthreads is linked in, it will define these functions itself to do
|
||||
real cthreads mutex locks. This file will only be linked in when
|
||||
cthreads is not used, and `mutexes' are in fact just spin locks (and
|
||||
some unused storage). */
|
||||
|
||||
void
|
||||
__mutex_lock_solid (void *lock)
|
||||
{
|
||||
if (_cthread_mutex_lock_routine)
|
||||
(*_cthread_mutex_lock_routine) (lock);
|
||||
else
|
||||
__spin_lock_solid (lock);
|
||||
__spin_lock_solid (lock);
|
||||
}
|
||||
|
||||
void
|
||||
__mutex_unlock_solid (void *lock)
|
||||
{
|
||||
if (_cthread_mutex_unlock_routine)
|
||||
(*_cthread_mutex_unlock_routine) (lock);
|
||||
}
|
||||
|
||||
void
|
||||
__mutex_init (void *lock)
|
||||
{
|
||||
/* This happens to be name space-safe because it is a macro.
|
||||
It invokes only spin_lock_init, which is a macro for __spin_lock_init;
|
||||
and cthread_queue_init, which is a macro for some simple code. */
|
||||
mutex_init ((struct mutex *) lock);
|
||||
}
|
||||
|
Reference in New Issue
Block a user