summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/keyrundestructors.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/keyrundestructors.c')
-rw-r--r--cpukit/posix/src/keyrundestructors.c69
1 files changed, 69 insertions, 0 deletions
diff --git a/cpukit/posix/src/keyrundestructors.c b/cpukit/posix/src/keyrundestructors.c
new file mode 100644
index 0000000000..cc8bad94e8
--- /dev/null
+++ b/cpukit/posix/src/keyrundestructors.c
@@ -0,0 +1,69 @@
+/*
+ * Copyright (c) 2010 embedded brains GmbH.
+ *
+ * COPYRIGHT (c) 1989-2007.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ *
+ * $Id$
+ */
+
+#if HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <rtems/system.h>
+#include <rtems/score/object.h>
+#include <rtems/score/thread.h>
+#include <rtems/posix/key.h>
+
+/*PAGE
+ *
+ * _POSIX_Keys_Run_destructors
+ *
+ * 17.1.1 Thread-Specific Data Key Create, P1003.1c/Draft 10, p. 163
+ *
+ * NOTE: This is the routine executed when a thread exits to
+ * run through all the keys and do the destructor action.
+ */
+
+void _POSIX_Keys_Run_destructors(
+ Thread_Control *thread
+)
+{
+ Objects_Maximum thread_index = _Objects_Get_index( thread->Object.id );
+ Objects_APIs thread_api = _Objects_Get_API( thread->Object.id );
+ bool done = false;
+
+ /*
+ * The standard allows one to avoid a potential infinite loop and limit the
+ * number of iterations. An infinite loop may happen if destructors set
+ * thread specific data. This can be considered dubious.
+ *
+ * Reference: 17.1.1.2 P1003.1c/Draft 10, p. 163, line 99.
+ */
+ while ( !done ) {
+ Objects_Maximum index = 0;
+ Objects_Maximum max = _POSIX_Keys_Information.maximum;
+
+ done = true;
+
+ for ( index = 1 ; index <= max ; ++index ) {
+ POSIX_Keys_Control *key = (POSIX_Keys_Control *)
+ _POSIX_Keys_Information.local_table [ index ];
+
+ if ( key != NULL && key->destructor != NULL ) {
+ void *value = key->Values [ thread_api ][ thread_index ];
+
+ if ( value != NULL ) {
+ key->Values [ thread_api ][ thread_index ] = NULL;
+ (*key->destructor)( value );
+ done = false;
+ }
+ }
+ }
+ }
+}