summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/pspindestroy.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/posix/src/pspindestroy.c30
1 files changed, 6 insertions, 24 deletions
diff --git a/cpukit/posix/src/pspindestroy.c b/cpukit/posix/src/pspindestroy.c
index 42a6e76806..f5de88f04b 100644
--- a/cpukit/posix/src/pspindestroy.c
+++ b/cpukit/posix/src/pspindestroy.c
@@ -9,6 +9,8 @@
* COPYRIGHT (c) 1989-2007.
* On-Line Applications Research Corporation (OAR).
*
+ * Copyright (c) 2016 embedded brains GmbH
+ *
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.org/license/LICENSE.
@@ -20,33 +22,13 @@
#include <rtems/posix/spinlockimpl.h>
-#include <errno.h>
-
int pthread_spin_destroy( pthread_spinlock_t *spinlock )
{
+#if defined(RTEMS_SMP) && defined(POSIX_SPINLOCKS_ARE_SELF_CONTAINED)
POSIX_Spinlock_Control *the_spinlock;
- ISR_lock_Context lock_context;
-
- _Objects_Allocator_lock();
-
- the_spinlock = _POSIX_Spinlock_Get( spinlock, &lock_context );
- if ( the_spinlock == NULL ) {
- _Objects_Allocator_unlock();
- return EINVAL;
- }
- _CORE_spinlock_Acquire_critical( &the_spinlock->Spinlock, &lock_context );
-
- if ( _CORE_spinlock_Is_busy( &the_spinlock->Spinlock ) ) {
- _CORE_spinlock_Release( &the_spinlock->Spinlock, &lock_context );
- _Objects_Allocator_unlock();
- return EBUSY;
- }
-
- _CORE_spinlock_Release( &the_spinlock->Spinlock, &lock_context );
-
- _Objects_Close( &_POSIX_Spinlock_Information, &the_spinlock->Object );
- _POSIX_Spinlock_Free( the_spinlock );
- _Objects_Allocator_unlock();
+ the_spinlock = _POSIX_Spinlock_Get( spinlock );
+ _SMP_ticket_lock_Destroy( &the_spinlock->Lock );
+#endif
return 0;
}