Skip to content
Snippets Groups Projects
Commit 6b3f2a74 authored by nicola's avatar nicola
Browse files

Save a function call on mutex locking/unlocking

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44106 138bc75d-0d04-0410-961f-82ee72b054a4
parent 08fdc2b4
No related branches found
No related tags found
No related merge requests found
......@@ -318,7 +318,7 @@ objc_mutex_lock(objc_mutex_t mutex)
return -1;
/* If we already own the lock then increment depth */
thread_id = objc_thread_id();
thread_id = __objc_thread_id();
if (mutex->owner == thread_id)
return ++mutex->depth;
......@@ -350,7 +350,7 @@ objc_mutex_trylock(objc_mutex_t mutex)
return -1;
/* If we already own the lock then increment depth */
thread_id = objc_thread_id();
thread_id = __objc_thread_id();
if (mutex->owner == thread_id)
return ++mutex->depth;
......@@ -385,7 +385,7 @@ objc_mutex_unlock(objc_mutex_t mutex)
return -1;
/* If another thread owns the lock then abort */
thread_id = objc_thread_id();
thread_id = __objc_thread_id();
if (mutex->owner != thread_id)
return -1;
......@@ -477,7 +477,7 @@ objc_condition_wait(objc_condition_t condition, objc_mutex_t mutex)
return -1;
/* Make sure we are owner of mutex */
thread_id = objc_thread_id();
thread_id = __objc_thread_id();
if (mutex->owner != thread_id)
return -1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment