summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/capture/capture.c
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/libmisc/capture/capture.c
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/libmisc/capture/capture.c')
-rw-r--r--cpukit/libmisc/capture/capture.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/cpukit/libmisc/capture/capture.c b/cpukit/libmisc/capture/capture.c
index 288169d9df..1fb18d6f9d 100644
--- a/cpukit/libmisc/capture/capture.c
+++ b/cpukit/libmisc/capture/capture.c
@@ -7,7 +7,7 @@
All rights reserved Objective Design Systems Pty Ltd, 2002
Chris Johns (ccj@acm.org)
- COPYRIGHT (c) 1989-2008.
+ COPYRIGHT (c) 1989-2009.
On-Line Applications Research Corporation (OAR).
The license and distribution terms for this file may be
@@ -687,7 +687,7 @@ rtems_capture_create_task (rtems_tcb* current_task,
* This function is called when a task is started.
*
*/
-static rtems_extension
+static void
rtems_capture_start_task (rtems_tcb* current_task,
rtems_tcb* started_task)
{
@@ -729,7 +729,7 @@ rtems_capture_start_task (rtems_tcb* current_task,
* This function is called when a task is restarted.
*
*/
-static rtems_extension
+static void
rtems_capture_restart_task (rtems_tcb* current_task,
rtems_tcb* restarted_task)
{
@@ -772,7 +772,7 @@ rtems_capture_restart_task (rtems_tcb* current_task,
* This function is called when a task is deleted.
*
*/
-static rtems_extension
+static void
rtems_capture_delete_task (rtems_tcb* current_task,
rtems_tcb* deleted_task)
{
@@ -822,7 +822,7 @@ rtems_capture_delete_task (rtems_tcb* current_task,
* This function is called when a task is begun.
*
*/
-static rtems_extension
+static void
rtems_capture_begin_task (rtems_tcb* begin_task)
{
/*
@@ -854,7 +854,7 @@ rtems_capture_begin_task (rtems_tcb* begin_task)
* returned rather than was deleted.
*
*/
-static rtems_extension
+static void
rtems_capture_exitted_task (rtems_tcb* exitted_task)
{
/*
@@ -887,7 +887,7 @@ rtems_capture_exitted_task (rtems_tcb* exitted_task)
* This function is called when a context is switched.
*
*/
-static rtems_extension
+static void
rtems_capture_switch_task (rtems_tcb* current_task,
rtems_tcb* heir_task)
{