summaryrefslogtreecommitdiffstats
path: root/cpukit/score
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-02-01 19:39:21 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-02-01 19:39:21 +0000
commit665356af66b39224cc967146dcfe57eb9459e9d9 (patch)
treea62d1f3e640b31e83a6f8482609986e2e8ea60c7 /cpukit/score
parentM==military changed to M=multiprocessor (diff)
downloadrtems-665356af66b39224cc967146dcfe57eb9459e9d9.tar.bz2
invalid use of tcb field resource count
Diffstat (limited to 'cpukit/score')
-rw-r--r--cpukit/score/src/coresem.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/cpukit/score/src/coresem.c b/cpukit/score/src/coresem.c
index 5fc55b5359..0e55926304 100644
--- a/cpukit/score/src/coresem.c
+++ b/cpukit/score/src/coresem.c
@@ -135,7 +135,6 @@ void _CORE_semaphore_Seize(
_ISR_Disable( level );
if ( the_semaphore->count != 0 ) {
the_semaphore->count -= 1;
- executing->resource_count++;
_ISR_Enable( level );
return;
}