summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/include
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-12 15:54:07 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-12 15:54:07 +0000
commit1925ec9be44c1bfa8d786b4d372cb69018f635bb (patch)
tree719e8415dc27228c204170ea629703aab1d25bb3 /cpukit/rtems/include
parentRemoved unnecessary 3rd parameter. (diff)
downloadrtems-1925ec9be44c1bfa8d786b4d372cb69018f635bb.tar.bz2
Corrected remaining references to struct rtems_task_variable_t since
it is now typedef'ed.
Diffstat (limited to 'cpukit/rtems/include')
-rw-r--r--cpukit/rtems/include/rtems/rtems/tasks.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/cpukit/rtems/include/rtems/rtems/tasks.h b/cpukit/rtems/include/rtems/rtems/tasks.h
index 65bf95a9c6..d7147586a8 100644
--- a/cpukit/rtems/include/rtems/rtems/tasks.h
+++ b/cpukit/rtems/include/rtems/rtems/tasks.h
@@ -150,11 +150,15 @@ typedef struct {
* Per task variable structure
*/
-typedef struct {
- struct rtems_task_variable_t *next;
- int *ptr;
- int var;
-} rtems_task_variable_t;
+struct rtems_task_variable_tt;
+
+struct rtems_task_variable_tt {
+ struct rtems_task_variable_tt *next;
+ int *ptr;
+ int var;
+};
+
+typedef struct rtems_task_variable_tt rtems_task_variable_t;
/*
* This is the API specific information required by each thread for