From 0eeb4c1d32aab0dbfd2a8f20aa326ae2d98ca1c6 Mon Sep 17 00:00:00 2001 From: Freddie Chopin Date: Sun, 29 Jan 2017 10:27:17 +0100 Subject: Unify names of all lock objects In preparation for the patch that would allow retargeting of locking routines, rename all lock objects to follow this pattern: "___[recursive_]mutex". Following locks were renamed: __dd_hash_lock -> __dd_hash_mutex __sfp_lock -> __sfp_recursive_mutex __sinit_lock -> __sinit_recursive_mutex __atexit_lock -> __atexit_recursive_mutex _arc4random_mutex -> __arc4random_mutex __env_lock_object -> __env_recursive_mutex __malloc_lock_object -> __malloc_recursive_mutex __atexit_mutex -> __at_quick_exit_mutex __tz_lock_object -> __tz_mutex --- newlib/libc/stdlib/mlock.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'newlib/libc/stdlib/mlock.c') diff --git a/newlib/libc/stdlib/mlock.c b/newlib/libc/stdlib/mlock.c index 888c986a9..4c392947d 100644 --- a/newlib/libc/stdlib/mlock.c +++ b/newlib/libc/stdlib/mlock.c @@ -40,7 +40,7 @@ that it already holds. #include #ifndef __SINGLE_THREAD__ -__LOCK_INIT_RECURSIVE(static, __malloc_lock_object); +__LOCK_INIT_RECURSIVE(static, __malloc_recursive_mutex); #endif void @@ -48,7 +48,7 @@ __malloc_lock (ptr) struct _reent *ptr; { #ifndef __SINGLE_THREAD__ - __lock_acquire_recursive (__malloc_lock_object); + __lock_acquire_recursive (__malloc_recursive_mutex); #endif } @@ -57,7 +57,7 @@ __malloc_unlock (ptr) struct _reent *ptr; { #ifndef __SINGLE_THREAD__ - __lock_release_recursive (__malloc_lock_object); + __lock_release_recursive (__malloc_recursive_mutex); #endif } -- cgit v1.2.3