summaryrefslogtreecommitdiffstats
path: root/cpukit/posix
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-26 16:17:00 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-26 16:17:00 +0000
commit3f727f980e3bb631e8d55834a0a79701c3b7aa8a (patch)
tree192a5fd3a4d7d90775a690a84efcb9c87bdc521d /cpukit/posix
parent2009-09-26 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-3f727f980e3bb631e8d55834a0a79701c3b7aa8a.tar.bz2
2009-09-26 Joel Sherrill <joel.sherrill@oarcorp.com>
* libmisc/capture/capture.c, posix/src/pthread.c, rtems/src/tasks.c, score/include/rtems/score/userext.h: Eliminate use of deprecated rtems_extension. Re-add prototype for _User_extensions_Add_API_set.
Diffstat (limited to 'cpukit/posix')
-rw-r--r--cpukit/posix/src/pthread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/posix/src/pthread.c b/cpukit/posix/src/pthread.c
index 40bda0c856..1743a5de2b 100644
--- a/cpukit/posix/src/pthread.c
+++ b/cpukit/posix/src/pthread.c
@@ -228,7 +228,7 @@ bool _POSIX_Threads_Create_extension(
*
* This method is invoked for each thread deleted.
*/
-User_extensions_routine _POSIX_Threads_Delete_extension(
+void _POSIX_Threads_Delete_extension(
Thread_Control *executing __attribute__((unused)),
Thread_Control *deleted
)
@@ -270,7 +270,7 @@ User_extensions_routine _POSIX_Threads_Delete_extension(
*
* This method is invoked each time a thread exits.
*/
-User_extensions_routine _POSIX_Threads_Exitted_extension(
+void _POSIX_Threads_Exitted_extension(
Thread_Control *executing
)
{