summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/src
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-08-16 19:36:29 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-08-16 19:36:29 +0000
commit0a51f80a23ce4c751f142bc18845e98e20d2f71f (patch)
treed36d509dc9a047024830fa481b9d9bcf28e78034 /c/src/exec/score/src
parent2001-08-16 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-0a51f80a23ce4c751f142bc18845e98e20d2f71f.tar.bz2
2001-08-16 Joel Sherrill <joel@OARcorp.com>
* src/coremutexsurrender.c: Use holder thread not executing thread because even though they may and often are the same it is not guaranteed unless the proper attribute is set.
Diffstat (limited to 'c/src/exec/score/src')
-rw-r--r--c/src/exec/score/src/coremutexsurrender.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/src/exec/score/src/coremutexsurrender.c b/c/src/exec/score/src/coremutexsurrender.c
index 7638ad316a..f60faba558 100644
--- a/c/src/exec/score/src/coremutexsurrender.c
+++ b/c/src/exec/score/src/coremutexsurrender.c
@@ -86,7 +86,7 @@ CORE_mutex_Status _CORE_mutex_Surrender(
}
}
- _Thread_Executing->resource_count--;
+ holder->resource_count--;
the_mutex->holder = NULL;
the_mutex->holder_id = 0;