summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/threadimpl.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-01-12 09:25:56 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-01-13 08:10:24 +0100
commit7ced9d9bb2fd51cfef2ce33d22e779adfed604c2 (patch)
treee8388a0a3ad4776b6b11777719b391ffe2127064 /cpukit/score/include/rtems/score/threadimpl.h
parentscore: Add Thread_queue_Queue::name (diff)
downloadrtems-7ced9d9bb2fd51cfef2ce33d22e779adfed604c2.tar.bz2
score: Add and use _Thread_Get_name()
Update #2858.
Diffstat (limited to 'cpukit/score/include/rtems/score/threadimpl.h')
-rw-r--r--cpukit/score/include/rtems/score/threadimpl.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/cpukit/score/include/rtems/score/threadimpl.h b/cpukit/score/include/rtems/score/threadimpl.h
index f131bbd506..cb9e8e6539 100644
--- a/cpukit/score/include/rtems/score/threadimpl.h
+++ b/cpukit/score/include/rtems/score/threadimpl.h
@@ -11,7 +11,7 @@
* COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
- * Copyright (c) 2014, 2016 embedded brains GmbH.
+ * Copyright (c) 2014, 2017 embedded brains GmbH.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
@@ -1951,6 +1951,12 @@ RTEMS_INLINE_ROUTINE void _Thread_Remove_timer_and_unblock(
#endif
}
+size_t _Thread_Get_name(
+ const Thread_Control *the_thread,
+ char *buffer,
+ size_t buffer_size
+);
+
/** @}*/
#ifdef __cplusplus