summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/threadimpl.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-01-08 12:11:03 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-01-11 08:47:24 +0100
commit1506658c07ad05dd58e2781af4d3df67c90b9f70 (patch)
treec7b99e1e9bd487d84c1c3e09634fb208ef413297 /cpukit/score/include/rtems/score/threadimpl.h
parentscore: Introduce Thread_Entry_information (diff)
downloadrtems-1506658c07ad05dd58e2781af4d3df67c90b9f70.tar.bz2
score: Simplify _Thread_Start()
Diffstat (limited to 'cpukit/score/include/rtems/score/threadimpl.h')
-rw-r--r--cpukit/score/include/rtems/score/threadimpl.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/cpukit/score/include/rtems/score/threadimpl.h b/cpukit/score/include/rtems/score/threadimpl.h
index f212e23928..4177a972ae 100644
--- a/cpukit/score/include/rtems/score/threadimpl.h
+++ b/cpukit/score/include/rtems/score/threadimpl.h
@@ -187,14 +187,10 @@ bool _Thread_Initialize(
*
* @param the_thread The thread to be started.
* @param entry The thread entry information.
- * @param[in,out] cpu The processor if used to start an idle thread
- * during system initialization. Must be set to @c NULL to start a normal
- * thread.
*/
bool _Thread_Start(
Thread_Control *the_thread,
- const Thread_Entry_information *entry,
- Per_CPU_Control *cpu
+ const Thread_Entry_information *entry
);
bool _Thread_Restart(