summaryrefslogtreecommitdiffstats
path: root/testsuites/samples/ticker/system.h
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/samples/ticker/system.h')
-rw-r--r--testsuites/samples/ticker/system.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/samples/ticker/system.h b/testsuites/samples/ticker/system.h
index 2139bc1403..fa231d56e4 100644
--- a/testsuites/samples/ticker/system.h
+++ b/testsuites/samples/ticker/system.h
@@ -73,7 +73,7 @@ extern rtems_name Task_name[ 4 ]; /* array of task names */
#define put_name( _name, _crlf ) \
do { \
- rtems_unsigned32 c0, c1, c2, c3; \
+ uint32_t c0, c1, c2, c3; \
\
c0 = ((_name) >> 24) & 0xff; \
c1 = ((_name) >> 16) & 0xff; \
@@ -91,7 +91,7 @@ extern rtems_name Task_name[ 4 ]; /* array of task names */
* static inline routine to make obtaining ticks per second easier.
*/
-static inline rtems_unsigned32 get_ticks_per_second( void )
+static inline uint32_t get_ticks_per_second( void )
{
rtems_interval ticks_per_second;
(void) rtems_clock_get( RTEMS_CLOCK_GET_TICKS_PER_SECOND, &ticks_per_second ); return ticks_per_second;