summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/pthreadjoin.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-07-27 17:17:49 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-07-27 17:17:49 +0000
commitf2dd10b7d1e1144d54e65a5a4030648cdab092eb (patch)
treec481c0c7fee814195415aa4929776ffc8bde1f95 /cpukit/posix/src/pthreadjoin.c
parent2011-07-27 Petr Benes <benesp16@fel.cvut.cz> (diff)
downloadrtems-f2dd10b7d1e1144d54e65a5a4030648cdab092eb.tar.bz2
2011-07-27 Joel Sherrill <joel.sherrilL@OARcorp.com>
* posix/src/pthread.c, posix/src/pthreadjoin.c: Revert accidental commit.
Diffstat (limited to 'cpukit/posix/src/pthreadjoin.c')
-rw-r--r--cpukit/posix/src/pthreadjoin.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/cpukit/posix/src/pthreadjoin.c b/cpukit/posix/src/pthreadjoin.c
index 71b0e3e27e..8ee9888b94 100644
--- a/cpukit/posix/src/pthreadjoin.c
+++ b/cpukit/posix/src/pthreadjoin.c
@@ -32,7 +32,6 @@ int pthread_join(
Objects_Locations location;
void *return_pointer;
-on_EINTR:
the_thread = _Thread_Get( thread, &location );
switch ( location ) {
@@ -61,11 +60,6 @@ on_EINTR:
_Thread_Enable_dispatch();
-/*
- if ( _Thread_Executing->Wait.return_code == EINTR )
- goto on_EINTR;
-*/
-
if ( value_ptr )
*value_ptr = return_pointer;
return 0;