2004-03-30 Ralf Corsepius <ralf_corsepius@rtems.org>

* fileio/init.c, fileio/system.h, ticker/system.h, ticker/tasks.c,
	unlimited/init.c, unlimited/test1.c, unlimited/test2.c,
	unlimited/test3.c: Convert to using c99 fixed size types.
This commit is contained in:
Ralf Corsepius
2004-03-30 11:12:01 +00:00
parent d8dbdc02cf
commit 4c84d7b760
9 changed files with 28 additions and 22 deletions

View File

@@ -1,3 +1,9 @@
2004-03-30 Ralf Corsepius <ralf_corsepius@rtems.org>
* fileio/init.c, fileio/system.h, ticker/system.h, ticker/tasks.c,
unlimited/init.c, unlimited/test1.c, unlimited/test2.c,
unlimited/test3.c: Convert to using c99 fixed size types.
2004-03-25 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2004-03-25 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Add 2nd arg to RTEMS_TOP. * configure.ac: Add 2nd arg to RTEMS_TOP.

View File

@@ -163,7 +163,7 @@ void fileio_list_file(void)
{ {
char fname[1024]; char fname[1024];
char *buf_ptr = NULL; char *buf_ptr = NULL;
unsigned32 flen = 0; uint32_t flen = 0;
int fd = -1; int fd = -1;
ssize_t n; ssize_t n;
size_t buf_size = 100; size_t buf_size = 100;
@@ -225,7 +225,7 @@ void fileio_list_file(void)
/* /*
* convert a size string (like 34K or 12M) to actual byte count * convert a size string (like 34K or 12M) to actual byte count
*/ */
boolean fileio_str2size(const char *str,unsigned32 *res_ptr) boolean fileio_str2size(const char *str,uint32_t *res_ptr)
{ {
boolean failed = FALSE; boolean failed = FALSE;
unsigned long size; unsigned long size;
@@ -254,8 +254,8 @@ void fileio_write_file(void)
{ {
char fname[1024]; char fname[1024];
char tmp_str[32]; char tmp_str[32];
unsigned32 file_size = 0; uint32_t file_size = 0;
unsigned32 buf_size = 0; uint32_t buf_size = 0;
size_t curr_pos,bytes_to_copy; size_t curr_pos,bytes_to_copy;
int fd = -1; int fd = -1;
ssize_t n; ssize_t n;
@@ -415,7 +415,7 @@ void fileio_read_file(void)
{ {
char fname[1024]; char fname[1024];
char tmp_str[32]; char tmp_str[32];
unsigned32 buf_size = 0; uint32_t buf_size = 0;
size_t curr_pos; size_t curr_pos;
int fd = -1; int fd = -1;
ssize_t n; ssize_t n;

View File

@@ -93,7 +93,7 @@ int rtems_bdbuf_configuration_size =( sizeof(rtems_bdbuf_configuration)
#define put_name( _name, _crlf ) \ #define put_name( _name, _crlf ) \
do { \ do { \
rtems_unsigned32 c0, c1, c2, c3; \ uint32_t c0, c1, c2, c3; \
\ \
c0 = ((_name) >> 24) & 0xff; \ c0 = ((_name) >> 24) & 0xff; \
c1 = ((_name) >> 16) & 0xff; \ c1 = ((_name) >> 16) & 0xff; \
@@ -111,7 +111,7 @@ int rtems_bdbuf_configuration_size =( sizeof(rtems_bdbuf_configuration)
* static inline routine to make obtaining ticks per second easier. * 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; rtems_interval ticks_per_second;
(void) rtems_clock_get( RTEMS_CLOCK_GET_TICKS_PER_SECOND, &ticks_per_second ); return ticks_per_second; (void) rtems_clock_get( RTEMS_CLOCK_GET_TICKS_PER_SECOND, &ticks_per_second ); return ticks_per_second;

View File

@@ -73,7 +73,7 @@ extern rtems_name Task_name[ 4 ]; /* array of task names */
#define put_name( _name, _crlf ) \ #define put_name( _name, _crlf ) \
do { \ do { \
rtems_unsigned32 c0, c1, c2, c3; \ uint32_t c0, c1, c2, c3; \
\ \
c0 = ((_name) >> 24) & 0xff; \ c0 = ((_name) >> 24) & 0xff; \
c1 = ((_name) >> 16) & 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 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; rtems_interval ticks_per_second;
(void) rtems_clock_get( RTEMS_CLOCK_GET_TICKS_PER_SECOND, &ticks_per_second ); return ticks_per_second; (void) rtems_clock_get( RTEMS_CLOCK_GET_TICKS_PER_SECOND, &ticks_per_second ); return ticks_per_second;

View File

@@ -27,7 +27,7 @@ rtems_task Test_task(
{ {
rtems_id tid; rtems_id tid;
rtems_time_of_day time; rtems_time_of_day time;
rtems_unsigned32 task_index; uint32_t task_index;
rtems_status_code status; rtems_status_code status;
status = rtems_task_ident( RTEMS_SELF, RTEMS_SEARCH_ALL_NODES, &tid ); status = rtems_task_ident( RTEMS_SELF, RTEMS_SEARCH_ALL_NODES, &tid );

View File

@@ -37,7 +37,7 @@ rtems_task Init(
{ {
rtems_task_priority old_priority; rtems_task_priority old_priority;
rtems_mode old_mode; rtems_mode old_mode;
rtems_unsigned32 task; uint32_t task;
/* lower the task priority to allow created tasks to execute */ /* lower the task priority to allow created tasks to execute */
@@ -80,7 +80,7 @@ void destory_all_tasks(
const char *who const char *who
) )
{ {
rtems_unsigned32 task; uint32_t task;
/* /*
* If the id is not zero, signal the task to delete. * If the id is not zero, signal the task to delete.

View File

@@ -26,7 +26,7 @@ void test1()
{ {
boolean auto_extend; boolean auto_extend;
rtems_status_code result; rtems_status_code result;
rtems_unsigned32 task_count = 0; uint32_t task_count = 0;
Objects_Information *the_information; Objects_Information *the_information;
char c1 = 'a'; char c1 = 'a';

View File

@@ -27,10 +27,10 @@
void test2() void test2()
{ {
rtems_status_code result; rtems_status_code result;
rtems_unsigned32 remove_task; uint32_t remove_task;
rtems_unsigned32 task; uint32_t task;
rtems_unsigned32 block; uint32_t block;
rtems_unsigned32 task_count = 0; uint32_t task_count = 0;
rtems_id removed_ids[TASK_ALLOCATION_SIZE * 2]; rtems_id removed_ids[TASK_ALLOCATION_SIZE * 2];
char c1 = 'a'; char c1 = 'a';
@@ -126,7 +126,7 @@ void test2()
for (task = 0; task < (TASK_ALLOCATION_SIZE * 2); task++) for (task = 0; task < (TASK_ALLOCATION_SIZE * 2); task++)
{ {
rtems_name name; rtems_name name;
rtems_unsigned32 id_slot; uint32_t id_slot;
/* /*
* Find a free slot in the task id table. * Find a free slot in the task id table.
@@ -202,7 +202,7 @@ void test2()
if (remove_task == (TASK_ALLOCATION_SIZE * 2)) if (remove_task == (TASK_ALLOCATION_SIZE * 2))
{ {
rtems_unsigned32 allocated_id; uint32_t allocated_id;
for (allocated_id = 0; allocated_id < MAX_TASKS; allocated_id++) for (allocated_id = 0; allocated_id < MAX_TASKS; allocated_id++)
if ((task_id[id_slot] == task_id[allocated_id]) && (id_slot != allocated_id)) if ((task_id[id_slot] == task_id[allocated_id]) && (id_slot != allocated_id))

View File

@@ -27,9 +27,9 @@
void test3() void test3()
{ {
rtems_status_code result; rtems_status_code result;
rtems_unsigned32 remove_task; uint32_t remove_task;
rtems_unsigned32 block; uint32_t block;
rtems_unsigned32 task_count = 0; uint32_t task_count = 0;
char c1 = 'a'; char c1 = 'a';
char c2 = 'a'; char c2 = 'a';