summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/include/rtems/posix/pthreadimpl.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-05-13 08:16:30 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-05-20 07:49:39 +0200
commit54550e048d3a49435912797d2024f80671e93267 (patch)
treebf49901187d98cf6a71975bdef7038d3ae0988c2 /cpukit/posix/include/rtems/posix/pthreadimpl.h
parentscore: Simplify _Thread_Life_action_handler() (diff)
downloadrtems-54550e048d3a49435912797d2024f80671e93267.tar.bz2
posix: Rework pthread_join()
Rework pthread_join() to use _Thread_Join(). Close #2402. Update #2555. Update #2626. Close #2714.
Diffstat (limited to '')
-rw-r--r--cpukit/posix/include/rtems/posix/pthreadimpl.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/cpukit/posix/include/rtems/posix/pthreadimpl.h b/cpukit/posix/include/rtems/posix/pthreadimpl.h
index 42f10b08bc..16b0163384 100644
--- a/cpukit/posix/include/rtems/posix/pthreadimpl.h
+++ b/cpukit/posix/include/rtems/posix/pthreadimpl.h
@@ -35,8 +35,6 @@ extern "C" {
*/
/**@{**/
-#define POSIX_THREAD_JOIN_TQ_OPERATIONS &_Thread_queue_Operations_FIFO
-
/**
* The following sets the minimum stack size for POSIX threads.
*/
@@ -211,18 +209,6 @@ RTEMS_INLINE_ROUTINE bool _POSIX_Threads_Is_null (
return !the_pthread;
}
-RTEMS_INLINE_ROUTINE Thread_Control *_POSIX_Threads_Join_dequeue(
- POSIX_API_Control *api
-)
-{
- return _Thread_queue_Dequeue(
- &api->Join_List,
- POSIX_THREAD_JOIN_TQ_OPERATIONS,
- NULL,
- 0
- );
-}
-
/** @} */
#ifdef __cplusplus