summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/include/rtems/rtems/tasks.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-11-01 13:36:49 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-11-01 13:36:49 +0000
commite6f664ffc90a2785038de2868287b0eca831d176 (patch)
treea3cb6e9e33a0d400aa8ccaf6e2669c5fff16901d /cpukit/rtems/include/rtems/rtems/tasks.h
parent2004-11-01 Joel Sherrill <joel@oarcorp.com> (diff)
downloadrtems-e6f664ffc90a2785038de2868287b0eca831d176.tar.bz2
2004-11-01 Ralf Corsepius <ralf_corsepius@rtems.org>
* rtems/include/rtems/rtems/tasks.h, rtems/src/taskstart.c: rtems_task_start(..., rtems_task_argument argument );
Diffstat (limited to 'cpukit/rtems/include/rtems/rtems/tasks.h')
-rw-r--r--cpukit/rtems/include/rtems/rtems/tasks.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/rtems/include/rtems/rtems/tasks.h b/cpukit/rtems/include/rtems/rtems/tasks.h
index 1445546c69..94047ebca7 100644
--- a/cpukit/rtems/include/rtems/rtems/tasks.h
+++ b/cpukit/rtems/include/rtems/rtems/tasks.h
@@ -142,7 +142,7 @@ typedef struct {
rtems_attribute attribute_set; /* task attributes */
rtems_task_entry entry_point; /* task entry point */
rtems_mode mode_set; /* task initial mode */
- uint32_t argument; /* task argument */
+ rtems_task_argument argument; /* task argument */
} rtems_initialization_tasks_table;
/*
@@ -362,7 +362,7 @@ rtems_status_code rtems_task_set_priority(
rtems_status_code rtems_task_start(
Objects_Id id,
rtems_task_entry entry_point,
- uint32_t argument
+ rtems_task_argument argument
);
/*