summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/include/rtems
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-03-23 06:07:53 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-03-23 06:07:53 +0000
commit83c5fc1bb9b45c22e428e1f7642b5a67cbf44b98 (patch)
tree76b5d9d4ee1884f779f727c1d33098a34ba0f7bf /cpukit/libcsupport/include/rtems
parent2004-03-22 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-83c5fc1bb9b45c22e428e1f7642b5a67cbf44b98.tar.bz2
2004-03-23 Ralf Corsepius <ralf_corsepius@rtems.org>
* libcsupport/include/chain.h, libcsupport/include/clockdrv.h, libcsupport/include/ringbuf.h, libcsupport/include/spurious.h, libcsupport/include/timerdrv.h, libcsupport/include/vmeintr.h, libcsupport/include/motorola/mc68230.h, libcsupport/include/rtems/assoc.h, libcsupport/include/rtems/libio.h, libcsupport/include/rtems/libio_.h, libcsupport/include/rtems/termiostypes.h, libcsupport/include/zilog/z8036.h, libcsupport/include/zilog/z8530.h, libcsupport/include/zilog/z8536.h, libcsupport/src/__gettod.c, libcsupport/src/assoc.c, libcsupport/src/assocnamebad.c, libcsupport/src/error.c, libcsupport/src/libio.c, libcsupport/src/libio_sockets.c, libcsupport/src/malloc.c, libcsupport/src/no_libc.c, libcsupport/src/termios.c, libcsupport/src/termiosreserveresources.c: Convert to using c99 fixed-size types.
Diffstat (limited to 'cpukit/libcsupport/include/rtems')
-rw-r--r--cpukit/libcsupport/include/rtems/assoc.h32
-rw-r--r--cpukit/libcsupport/include/rtems/libio.h42
-rw-r--r--cpukit/libcsupport/include/rtems/libio_.h14
-rw-r--r--cpukit/libcsupport/include/rtems/termiostypes.h2
4 files changed, 45 insertions, 45 deletions
diff --git a/cpukit/libcsupport/include/rtems/assoc.h b/cpukit/libcsupport/include/rtems/assoc.h
index 1982d654ac..7c5ebe7f6a 100644
--- a/cpukit/libcsupport/include/rtems/assoc.h
+++ b/cpukit/libcsupport/include/rtems/assoc.h
@@ -12,8 +12,8 @@
typedef struct {
const char *name;
- unsigned32 local_value;
- unsigned32 remote_value;
+ uint32_t local_value;
+ uint32_t remote_value;
} rtems_assoc_t;
/*
@@ -23,20 +23,20 @@ typedef struct {
#define RTEMS_ASSOC_DEFAULT_NAME "(default)"
const rtems_assoc_t *rtems_assoc_ptr_by_name(const rtems_assoc_t *, const char *);
-const rtems_assoc_t *rtems_assoc_ptr_by_value(const rtems_assoc_t *, unsigned32);
-const rtems_assoc_t *rtems_assoc_ptr_by_remote(const rtems_assoc_t *, unsigned32);
-
-unsigned32 rtems_assoc_remote_by_local(const rtems_assoc_t *, unsigned32);
-unsigned32 rtems_assoc_local_by_remote(const rtems_assoc_t *, unsigned32);
-unsigned32 rtems_assoc_remote_by_name(const rtems_assoc_t *, const char *);
-unsigned32 rtems_assoc_local_by_name(const rtems_assoc_t *, const char *);
-const char *rtems_assoc_name_by_local(const rtems_assoc_t *, unsigned32);
-const char *rtems_assoc_name_by_remote(const rtems_assoc_t *, unsigned32);
-
-unsigned32 rtems_assoc_remote_by_local_bitfield(const rtems_assoc_t *, unsigned32);
-char *rtems_assoc_name_by_local_bitfield(const rtems_assoc_t *, unsigned32, char *);
-char *rtems_assoc_name_by_remote_bitfield(const rtems_assoc_t *, unsigned32, char *);
-unsigned32 rtems_assoc_local_by_remote_bitfield(const rtems_assoc_t *, unsigned32);
+const rtems_assoc_t *rtems_assoc_ptr_by_value(const rtems_assoc_t *, uint32_t );
+const rtems_assoc_t *rtems_assoc_ptr_by_remote(const rtems_assoc_t *, uint32_t );
+
+uint32_t rtems_assoc_remote_by_local(const rtems_assoc_t *, uint32_t );
+uint32_t rtems_assoc_local_by_remote(const rtems_assoc_t *, uint32_t );
+uint32_t rtems_assoc_remote_by_name(const rtems_assoc_t *, const char *);
+uint32_t rtems_assoc_local_by_name(const rtems_assoc_t *, const char *);
+const char *rtems_assoc_name_by_local(const rtems_assoc_t *, uint32_t );
+const char *rtems_assoc_name_by_remote(const rtems_assoc_t *, uint32_t );
+
+uint32_t rtems_assoc_remote_by_local_bitfield(const rtems_assoc_t *, uint32_t );
+char *rtems_assoc_name_by_local_bitfield(const rtems_assoc_t *, uint32_t , char *);
+char *rtems_assoc_name_by_remote_bitfield(const rtems_assoc_t *, uint32_t , char *);
+uint32_t rtems_assoc_local_by_remote_bitfield(const rtems_assoc_t *, uint32_t );
#endif /* ! _INCLUDE_ASSOC_H */
diff --git a/cpukit/libcsupport/include/rtems/libio.h b/cpukit/libcsupport/include/rtems/libio.h
index a70787d9ca..498ecd1f59 100644
--- a/cpukit/libcsupport/include/rtems/libio.h
+++ b/cpukit/libcsupport/include/rtems/libio.h
@@ -48,8 +48,8 @@ typedef int rtems_filesystem_node_types_t;
typedef int (*rtems_filesystem_open_t)(
rtems_libio_t *iop,
const char *pathname,
- unsigned32 flag,
- unsigned32 mode
+ uint32_t flag,
+ uint32_t mode
);
typedef int (*rtems_filesystem_close_t)(
@@ -59,18 +59,18 @@ typedef int (*rtems_filesystem_close_t)(
typedef ssize_t (*rtems_filesystem_read_t)(
rtems_libio_t *iop,
void *buffer,
- unsigned32 count
+ uint32_t count
);
typedef ssize_t (*rtems_filesystem_write_t)(
rtems_libio_t *iop,
const void *buffer,
- unsigned32 count
+ uint32_t count
);
typedef int (*rtems_filesystem_ioctl_t)(
rtems_libio_t *iop,
- unsigned32 command,
+ uint32_t command,
void *buffer
);
@@ -340,10 +340,10 @@ struct rtems_libio_tt {
rtems_driver_name_t *driver;
off_t size; /* size of file */
off_t offset; /* current offset into file */
- unsigned32 flags;
+ uint32_t flags;
rtems_filesystem_location_info_t pathinfo;
Objects_Id sem;
- unsigned32 data0; /* private to "driver" */
+ uint32_t data0; /* private to "driver" */
void *data1; /* ... */
void *file_info; /* used by file handlers */
rtems_filesystem_file_handlers_r *handlers; /* type specific handlers */
@@ -358,10 +358,10 @@ struct rtems_libio_tt {
typedef struct {
rtems_libio_t *iop;
off_t offset;
- unsigned8 *buffer;
- unsigned32 count;
- unsigned32 flags;
- unsigned32 bytes_moved;
+ uint8_t *buffer;
+ uint32_t count;
+ uint32_t flags;
+ uint32_t bytes_moved;
} rtems_libio_rw_args_t;
/*
@@ -370,8 +370,8 @@ typedef struct {
typedef struct {
rtems_libio_t *iop;
- unsigned32 flags;
- unsigned32 mode;
+ uint32_t flags;
+ uint32_t mode;
} rtems_libio_open_close_args_t;
/*
@@ -380,9 +380,9 @@ typedef struct {
typedef struct {
rtems_libio_t *iop;
- unsigned32 command;
+ uint32_t command;
void *buffer;
- unsigned32 ioctl_return;
+ uint32_t ioctl_return;
} rtems_libio_ioctl_args_t;
/*
@@ -406,8 +406,8 @@ void rtems_libio_init(void);
typedef int (*rtems_libio_open_t)(
const char *pathname,
- unsigned32 flag,
- unsigned32 mode
+ uint32_t flag,
+ uint32_t mode
);
typedef int (*rtems_libio_close_t)(
@@ -417,18 +417,18 @@ typedef int (*rtems_libio_close_t)(
typedef int (*rtems_libio_read_t)(
int fd,
void *buffer,
- unsigned32 count
+ uint32_t count
);
typedef int (*rtems_libio_write_t)(
int fd,
const void *buffer,
- unsigned32 count
+ uint32_t count
);
typedef int (*rtems_libio_ioctl_t)(
int fd,
- unsigned32 command,
+ uint32_t command,
void *buffer
);
@@ -601,7 +601,7 @@ int rtems_termios_dequeue_characters(
void rtems_termios_reserve_resources(
rtems_configuration_table *configuration,
- rtems_unsigned32 number_of_devices
+ uint32_t number_of_devices
);
int unmount(
diff --git a/cpukit/libcsupport/include/rtems/libio_.h b/cpukit/libcsupport/include/rtems/libio_.h
index 841c3e38a8..cc5b4ff7bc 100644
--- a/cpukit/libcsupport/include/rtems/libio_.h
+++ b/cpukit/libcsupport/include/rtems/libio_.h
@@ -39,7 +39,7 @@ extern rtems_filesystem_file_handlers_r rtems_filesystem_null_handlers;
* File descriptor Table Information
*/
-extern unsigned32 rtems_libio_number_iops;
+extern uint32_t rtems_libio_number_iops;
extern rtems_libio_t *rtems_libio_iops;
extern rtems_libio_t *rtems_libio_last_iop;
extern rtems_libio_t *rtems_libio_iop_freelist;
@@ -51,7 +51,7 @@ extern rtems_libio_t *rtems_libio_iop_freelist;
*/
#define rtems_libio_iop(_fd) \
- ((((unsigned32)(_fd)) < rtems_libio_number_iops) ? \
+ ((((uint32_t )(_fd)) < rtems_libio_number_iops) ? \
&rtems_libio_iops[_fd] : 0)
/*
@@ -86,7 +86,7 @@ extern rtems_libio_t *rtems_libio_iop_freelist;
#define rtems_libio_check_fd(_fd) \
do { \
- if ((unsigned32) (_fd) >= rtems_libio_number_iops) { \
+ if ((uint32_t ) (_fd) >= rtems_libio_number_iops) { \
errno = EBADF; \
return -1; \
} \
@@ -206,12 +206,12 @@ rtems_status_code rtems_libio_share_private_env(rtems_id task_id) ;
rtems_libio_t *rtems_libio_allocate(void);
-unsigned32 rtems_libio_fcntl_flags(
- unsigned32 fcntl_flags
+uint32_t rtems_libio_fcntl_flags(
+ uint32_t fcntl_flags
);
-unsigned32 rtems_libio_to_fcntl_flags(
- unsigned32 flags
+uint32_t rtems_libio_to_fcntl_flags(
+ uint32_t flags
);
void rtems_libio_free(
diff --git a/cpukit/libcsupport/include/rtems/termiostypes.h b/cpukit/libcsupport/include/rtems/termiostypes.h
index 6a4852cd08..ab5968d0a2 100644
--- a/cpukit/libcsupport/include/rtems/termiostypes.h
+++ b/cpukit/libcsupport/include/rtems/termiostypes.h
@@ -90,7 +90,7 @@ struct rtems_termios_tty {
* Raw input character buffer
*/
struct rtems_termios_rawbuf rawInBuf;
- rtems_unsigned32 rawInBufSemaphoreOptions;
+ uint32_t rawInBufSemaphoreOptions;
rtems_interval rawInBufSemaphoreTimeout;
rtems_interval rawInBufSemaphoreFirstTimeout;
unsigned int rawInBufDropped; /* Statistics */