summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/keyrundestructors.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-11-06 21:39:23 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-11-06 21:39:23 +0000
commit1d0efc105e0cf44414fe748699e1c93281945531 (patch)
treee56cd8638c10284ca6b5d2bb6f8c350c90595953 /cpukit/posix/src/keyrundestructors.c
parent2007-11-06 Till Straumann <strauman@slac.stanford.edu> (diff)
downloadrtems-1d0efc105e0cf44414fe748699e1c93281945531.tar.bz2
2007-11-06 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 1266/cpukit * posix/src/keycreate.c, posix/src/keyrundestructors.c: Use API instead of class for key indexing.
Diffstat (limited to 'cpukit/posix/src/keyrundestructors.c')
-rw-r--r--cpukit/posix/src/keyrundestructors.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpukit/posix/src/keyrundestructors.c b/cpukit/posix/src/keyrundestructors.c
index f2c3b8e380..299a37eeee 100644
--- a/cpukit/posix/src/keyrundestructors.c
+++ b/cpukit/posix/src/keyrundestructors.c
@@ -31,15 +31,15 @@ void _POSIX_Keys_Run_destructors(
)
{
uint32_t index;
- uint32_t pthread_index;
- uint32_t pthread_class;
+ uint32_t thread_index;
+ uint32_t thread_api;
uint32_t iterations;
boolean are_all_null;
POSIX_Keys_Control *the_key;
void *value;
- pthread_index = _Objects_Get_index( thread->Object.id );
- pthread_class = _Objects_Get_class( thread->Object.id );
+ thread_index = _Objects_Get_index( thread->Object.id );
+ thread_api = _Objects_Get_API( thread->Object.id );
iterations = 0;
@@ -53,10 +53,10 @@ void _POSIX_Keys_Run_destructors(
_POSIX_Keys_Information.local_table[ index ];
if ( the_key && the_key->is_active && the_key->destructor ) {
- value = the_key->Values[ pthread_class ][ pthread_index ];
+ value = the_key->Values[ thread_api ][ thread_index ];
if ( value ) {
(*the_key->destructor)( value );
- if ( the_key->Values[ pthread_class ][ pthread_index ] )
+ if ( the_key->Values[ thread_api ][ thread_index ] )
are_all_null = FALSE;
}
}