mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-05 15:15:44 +00:00
2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>
* optman/rtems/no-dpmem.c, optman/rtems/no-mp.c, optman/rtems/no-msg.c, optman/rtems/no-part.c, optman/rtems/no-region.c, optman/rtems/no-rtmon.c, optman/rtems/no-sem.c, optman/rtems/no-timer.c, optman/sapi/no-ext.c, optman/sapi/no-io.c: Convert to using c99 fixed size types.
This commit is contained in:
@@ -1,3 +1,12 @@
|
||||
2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>
|
||||
|
||||
* optman/rtems/no-dpmem.c, optman/rtems/no-mp.c,
|
||||
optman/rtems/no-msg.c, optman/rtems/no-part.c,
|
||||
optman/rtems/no-region.c, optman/rtems/no-rtmon.c,
|
||||
optman/rtems/no-sem.c, optman/rtems/no-timer.c,
|
||||
optman/sapi/no-ext.c, optman/sapi/no-io.c: Convert to using c99
|
||||
fixed size types.
|
||||
|
||||
2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>
|
||||
|
||||
* configure.ac: Explicitly pass --includedir and --libdir to
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
#include <rtems/rtems/dpmem.h>
|
||||
|
||||
void _Dual_ported_memory_Manager_initialization(
|
||||
unsigned32 maximum_ports
|
||||
uint32_t maximum_ports
|
||||
)
|
||||
{
|
||||
}
|
||||
@@ -31,7 +31,7 @@ rtems_status_code rtems_port_create(
|
||||
rtems_name name,
|
||||
void *internal_start,
|
||||
void *external_start,
|
||||
unsigned32 length,
|
||||
uint32_t length,
|
||||
Objects_Id *id
|
||||
)
|
||||
{
|
||||
|
||||
@@ -45,7 +45,7 @@ void rtems_multiprocessing_announce ( void )
|
||||
|
||||
void _MPCI_Handler_initialization(
|
||||
MPCI_Control *users_mpci_table,
|
||||
unsigned32 timeout_status
|
||||
uint32_t timeout_status
|
||||
)
|
||||
{
|
||||
}
|
||||
@@ -88,7 +88,7 @@ void _MPCI_Return_packet (
|
||||
}
|
||||
|
||||
void _MPCI_Send_process_packet (
|
||||
unsigned32 destination,
|
||||
uint32_t destination,
|
||||
MP_packet_Prefix *the_packet
|
||||
)
|
||||
{
|
||||
@@ -99,8 +99,8 @@ void _MPCI_Send_process_packet (
|
||||
);
|
||||
}
|
||||
|
||||
unsigned32 _MPCI_Send_request_packet (
|
||||
unsigned32 destination,
|
||||
uint32_t _MPCI_Send_request_packet (
|
||||
uint32_t destination,
|
||||
MP_packet_Prefix *the_packet,
|
||||
States_Control extra_state
|
||||
)
|
||||
@@ -114,7 +114,7 @@ unsigned32 _MPCI_Send_request_packet (
|
||||
}
|
||||
|
||||
void _MPCI_Send_response_packet (
|
||||
unsigned32 destination,
|
||||
uint32_t destination,
|
||||
MP_packet_Prefix *the_packet
|
||||
)
|
||||
{
|
||||
@@ -148,7 +148,7 @@ Thread_Control *_MPCI_Process_response (
|
||||
}
|
||||
|
||||
Thread _MPCI_Receive_server(
|
||||
unsigned32 ignore
|
||||
uint32_t ignore
|
||||
)
|
||||
{
|
||||
_Internal_error_Occurred(
|
||||
|
||||
@@ -26,15 +26,15 @@
|
||||
#include <rtems/score/interr.h>
|
||||
|
||||
void _Message_queue_Manager_initialization(
|
||||
unsigned32 maximum_message_queues
|
||||
uint32_t maximum_message_queues
|
||||
)
|
||||
{
|
||||
}
|
||||
|
||||
rtems_status_code rtems_message_queue_create(
|
||||
rtems_name name,
|
||||
unsigned32 count,
|
||||
unsigned32 max_message_size,
|
||||
uint32_t count,
|
||||
uint32_t max_message_size,
|
||||
rtems_attribute attribute_set,
|
||||
Objects_Id *id
|
||||
)
|
||||
@@ -49,7 +49,7 @@ rtems_status_code rtems_message_queue_create(
|
||||
|
||||
rtems_status_code rtems_message_queue_ident(
|
||||
rtems_name name,
|
||||
unsigned32 node,
|
||||
uint32_t node,
|
||||
Objects_Id *id
|
||||
)
|
||||
{
|
||||
@@ -76,7 +76,7 @@ rtems_status_code rtems_message_queue_delete(
|
||||
rtems_status_code rtems_message_queue_send(
|
||||
Objects_Id id,
|
||||
void *buffer,
|
||||
unsigned32 size
|
||||
uint32_t size
|
||||
)
|
||||
{
|
||||
_Internal_error_Occurred(
|
||||
@@ -90,7 +90,7 @@ rtems_status_code rtems_message_queue_send(
|
||||
rtems_status_code rtems_message_queue_urgent(
|
||||
Objects_Id id,
|
||||
void *buffer,
|
||||
unsigned32 size
|
||||
uint32_t size
|
||||
)
|
||||
{
|
||||
_Internal_error_Occurred(
|
||||
@@ -104,8 +104,8 @@ rtems_status_code rtems_message_queue_urgent(
|
||||
rtems_status_code rtems_message_queue_broadcast(
|
||||
Objects_Id id,
|
||||
void *buffer,
|
||||
unsigned32 size,
|
||||
unsigned32 *count
|
||||
uint32_t size,
|
||||
uint32_t *count
|
||||
)
|
||||
{
|
||||
_Internal_error_Occurred(
|
||||
@@ -119,8 +119,8 @@ rtems_status_code rtems_message_queue_broadcast(
|
||||
rtems_status_code rtems_message_queue_receive(
|
||||
Objects_Id id,
|
||||
void *buffer,
|
||||
unsigned32 *size_p,
|
||||
unsigned32 option_set,
|
||||
uint32_t *size_p,
|
||||
uint32_t option_set,
|
||||
rtems_interval timeout
|
||||
)
|
||||
{
|
||||
@@ -134,7 +134,7 @@ rtems_status_code rtems_message_queue_receive(
|
||||
|
||||
rtems_status_code rtems_message_queue_flush(
|
||||
Objects_Id id,
|
||||
unsigned32 *count
|
||||
uint32_t *count
|
||||
)
|
||||
{
|
||||
_Internal_error_Occurred(
|
||||
@@ -145,7 +145,7 @@ rtems_status_code rtems_message_queue_flush(
|
||||
return RTEMS_NOT_CONFIGURED;
|
||||
}
|
||||
|
||||
unsigned32 _Message_queue_Flush_support(
|
||||
uint32_t _Message_queue_Flush_support(
|
||||
Message_queue_Control *the_message_queue
|
||||
)
|
||||
{
|
||||
@@ -162,7 +162,7 @@ boolean _Message_queue_Seize(
|
||||
Message_queue_Control *the_message_queue,
|
||||
rtems_option option_set,
|
||||
void *buffer,
|
||||
unsigned32 *size_p
|
||||
uint32_t *size_p
|
||||
)
|
||||
{
|
||||
_Internal_error_Occurred(
|
||||
@@ -178,7 +178,7 @@ boolean _Message_queue_Seize(
|
||||
rtems_status_code _Message_queue_Submit(
|
||||
Objects_Id id,
|
||||
void *buffer,
|
||||
unsigned32 size,
|
||||
uint32_t size,
|
||||
Message_queue_Submit_types submit_type
|
||||
)
|
||||
{
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
#include <rtems/score/interr.h>
|
||||
|
||||
void _Partition_Manager_initialization(
|
||||
unsigned32 maximum_partitions
|
||||
uint32_t maximum_partitions
|
||||
)
|
||||
{
|
||||
}
|
||||
@@ -29,8 +29,8 @@ void _Partition_Manager_initialization(
|
||||
rtems_status_code rtems_partition_create(
|
||||
rtems_name name,
|
||||
void *starting_address,
|
||||
unsigned32 length,
|
||||
unsigned32 buffer_size,
|
||||
uint32_t length,
|
||||
uint32_t buffer_size,
|
||||
rtems_attribute attribute_set,
|
||||
Objects_Id *id
|
||||
)
|
||||
@@ -45,7 +45,7 @@ rtems_status_code rtems_partition_create(
|
||||
|
||||
rtems_status_code rtems_partition_ident(
|
||||
rtems_name name,
|
||||
unsigned32 node,
|
||||
uint32_t node,
|
||||
Objects_Id *id
|
||||
)
|
||||
{
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
#include <rtems/score/interr.h>
|
||||
|
||||
void _Region_Manager_initialization(
|
||||
unsigned32 maximum_regions
|
||||
uint32_t maximum_regions
|
||||
)
|
||||
{
|
||||
}
|
||||
@@ -30,8 +30,8 @@ void _Region_Manager_initialization(
|
||||
rtems_status_code rtems_region_create(
|
||||
rtems_name name,
|
||||
void *starting_address,
|
||||
unsigned32 length,
|
||||
unsigned32 page_size,
|
||||
uint32_t length,
|
||||
uint32_t page_size,
|
||||
rtems_attribute attribute_set,
|
||||
Objects_Id *id
|
||||
)
|
||||
@@ -71,7 +71,7 @@ rtems_status_code rtems_region_delete(
|
||||
|
||||
rtems_status_code rtems_region_get_segment(
|
||||
Objects_Id id,
|
||||
unsigned32 size,
|
||||
uint32_t size,
|
||||
rtems_option option_set,
|
||||
rtems_interval timeout,
|
||||
void **segment
|
||||
@@ -88,7 +88,7 @@ rtems_status_code rtems_region_get_segment(
|
||||
rtems_status_code rtems_region_get_segment_size(
|
||||
Objects_Id id,
|
||||
void *segment,
|
||||
unsigned32 *size
|
||||
uint32_t *size
|
||||
)
|
||||
{
|
||||
_Internal_error_Occurred(
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
#include <rtems/rtems/ratemon.h>
|
||||
|
||||
void _Rate_monotonic_Manager_initialization(
|
||||
unsigned32 maximum_periods
|
||||
uint32_t maximum_periods
|
||||
)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -25,14 +25,14 @@
|
||||
#include <rtems/score/interr.h>
|
||||
|
||||
void _Semaphore_Manager_initialization(
|
||||
unsigned32 maximum_semaphores
|
||||
uint32_t maximum_semaphores
|
||||
)
|
||||
{
|
||||
}
|
||||
|
||||
rtems_status_code rtems_semaphore_create(
|
||||
rtems_name name,
|
||||
unsigned32 count,
|
||||
uint32_t count,
|
||||
rtems_attribute attribute_set,
|
||||
rtems_task_priority priority_ceiling,
|
||||
Objects_Id *id
|
||||
@@ -48,7 +48,7 @@ rtems_status_code rtems_semaphore_create(
|
||||
|
||||
rtems_status_code rtems_semaphore_ident(
|
||||
rtems_name name,
|
||||
unsigned32 node,
|
||||
uint32_t node,
|
||||
Objects_Id *id
|
||||
)
|
||||
{
|
||||
@@ -74,7 +74,7 @@ rtems_status_code rtems_semaphore_delete(
|
||||
|
||||
rtems_status_code rtems_semaphore_obtain(
|
||||
Objects_Id id,
|
||||
unsigned32 option_set,
|
||||
uint32_t option_set,
|
||||
rtems_interval timeout
|
||||
)
|
||||
{
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
#include <rtems/rtems/timer.h>
|
||||
|
||||
void _Timer_Manager_initialization(
|
||||
unsigned32 maximum_timers
|
||||
uint32_t maximum_timers
|
||||
)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
#include <rtems/score/interr.h>
|
||||
|
||||
void _Extension_Manager_initialization(
|
||||
unsigned32 maximum_extensions
|
||||
uint32_t maximum_extensions
|
||||
)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -21,9 +21,9 @@
|
||||
|
||||
void _IO_Manager_initialization(
|
||||
rtems_driver_address_table *driver_table,
|
||||
unsigned32 drivers_in_table,
|
||||
unsigned32 number_of_drivers,
|
||||
unsigned32 number_of_devices
|
||||
uint32_t drivers_in_table,
|
||||
uint32_t number_of_drivers,
|
||||
uint32_t number_of_devices
|
||||
)
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user