summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/rtems++/System.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-03-30 11:12:47 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-03-30 11:12:47 +0000
commit9919946a826082275166ebfe37eee168672f7eca (patch)
treec6165403496985bbec8fb1a6b823e1032991673a /testsuites/libtests/rtems++/System.h
parent2004-03-30 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-9919946a826082275166ebfe37eee168672f7eca.tar.bz2
2004-03-30 Ralf Corsepius <ralf_corsepius@rtems.org>
* cpuuse/system.h, cpuuse/task1.c, cpuuse/tswitch.c, monitor/init.c, monitor/system.h, rtems++/System.h, rtems++/Task1.cc, rtems++/Task2.cc, rtems++/Task3.cc, rtmonuse/init.c, rtmonuse/system.h, rtmonuse/task1.c, stackchk/blow.c: Convert to using c99 fixed size types.
Diffstat (limited to 'testsuites/libtests/rtems++/System.h')
-rw-r--r--testsuites/libtests/rtems++/System.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuites/libtests/rtems++/System.h b/testsuites/libtests/rtems++/System.h
index 0f3cbaa2e9..53ad2d24b0 100644
--- a/testsuites/libtests/rtems++/System.h
+++ b/testsuites/libtests/rtems++/System.h
@@ -62,7 +62,7 @@ protected:
public:
Task2(const char* name,
const rtems_task_priority initial_priority,
- const rtems_unsigned32 stack_size);
+ const uint32_t stack_size);
};
class Task3
@@ -76,7 +76,7 @@ protected:
public:
Task3(const char* name,
const rtems_task_priority initial_priority,
- const rtems_unsigned32 stack_size);
+ const uint32_t stack_size);
};
class EndTask
@@ -88,7 +88,7 @@ protected:
public:
EndTask(const char* name,
const rtems_task_priority initial_priority,
- const rtems_unsigned32 stack_size);
+ const uint32_t stack_size);
};
#if 0