From 28352faecf8b000b71f734cd728f38aa212b9669 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Sun, 29 Nov 2009 13:51:53 +0000 Subject: Whitespace removal. --- cpukit/sapi/include/confdefs.h | 40 +++++++++++++++++------------------ cpukit/sapi/include/rtems/chain.h | 2 +- cpukit/sapi/include/rtems/config.h | 10 ++++----- cpukit/sapi/include/rtems/extension.h | 8 +++---- cpukit/sapi/include/rtems/fatal.h | 2 +- cpukit/sapi/include/rtems/init.h | 2 +- cpukit/sapi/include/rtems/io.h | 2 +- cpukit/sapi/include/rtems/sptables.h | 2 +- cpukit/sapi/src/extensioncreate.c | 2 +- cpukit/sapi/src/extensiondelete.c | 2 +- cpukit/sapi/src/extensionident.c | 2 +- cpukit/sapi/src/io.c | 2 +- cpukit/sapi/src/ioregisterdriver.c | 4 ++-- 13 files changed, 40 insertions(+), 40 deletions(-) (limited to 'cpukit/sapi') diff --git a/cpukit/sapi/include/confdefs.h b/cpukit/sapi/include/confdefs.h index 9d1bee2674..5b6ecadfa6 100644 --- a/cpukit/sapi/include/confdefs.h +++ b/cpukit/sapi/include/confdefs.h @@ -24,8 +24,8 @@ * support the RTEMS Test Suites into something that can be * used remarkably reliably by most applications. */ - -/* + +/* * COPYRIGHT (c) 1989-2009. * On-Line Applications Research Corporation (OAR). * @@ -76,21 +76,21 @@ extern rtems_configuration_table Configuration; #include #ifdef CONFIGURE_INIT -rtems_libio_init_functions_t rtems_libio_init_helper = +rtems_libio_init_functions_t rtems_libio_init_helper = #ifdef CONFIGURE_APPLICATION_DISABLE_FILESYSTEM NULL; #else rtems_libio_init; #endif -rtems_libio_supp_functions_t rtems_libio_supp_helper = +rtems_libio_supp_functions_t rtems_libio_supp_helper = #ifdef CONFIGURE_APPLICATION_DISABLE_FILESYSTEM NULL; #else open_dev_console; #endif -rtems_fs_init_functions_t rtems_fs_init_helper = +rtems_fs_init_functions_t rtems_fs_init_helper = #ifdef CONFIGURE_APPLICATION_DISABLE_FILESYSTEM NULL; #else @@ -109,7 +109,7 @@ rtems_fs_init_functions_t rtems_fs_init_helper = #endif /** - * This macro defines the number of POSIX file descriptors allocated + * This macro defines the number of POSIX file descriptors allocated * and managed by libio. These are the "integer" file descriptors that * are used by calls like open(2) and read(2). */ @@ -258,7 +258,7 @@ rtems_fs_init_functions_t rtems_fs_init_helper = #define CONFIGURE_STACK_CHECKER_ENABLED #warning "STACK_CHECKER_ON deprecated -- use CONFIGURE_STACK_CHECKER_ENABLED" #endif - + /** * This configures the stack checker user extension. */ @@ -467,7 +467,7 @@ rtems_fs_init_functions_t rtems_fs_init_helper = /** * This configures the malloc family plugin which dirties memory * allocated. This is helpful for finding unitialized data structure - * problems. + * problems. */ rtems_malloc_dirtier_t *rtems_malloc_dirty_helper = #if defined(CONFIGURE_MALLOC_DIRTY) @@ -494,8 +494,8 @@ rtems_fs_init_functions_t rtems_fs_init_helper = ((_max) & ~RTEMS_UNLIMITED_OBJECTS) /** - * This macro accounts for how memory for a set of configured objects is - * allocated from the Executive Workspace. + * This macro accounts for how memory for a set of configured objects is + * allocated from the Executive Workspace. * * NOTE: It does NOT attempt to address the more complex case of unlimited * objects. @@ -771,7 +771,7 @@ rtems_fs_init_functions_t rtems_fs_init_helper = RTEMS_BDBUF_BUFFER_MAX_SIZE_DEFAULT #endif #ifdef CONFIGURE_INIT - const rtems_bdbuf_config rtems_bdbuf_configuration = { + const rtems_bdbuf_config rtems_bdbuf_configuration = { CONFIGURE_BDBUF_MAX_READ_AHEAD_BLOCKS, CONFIGURE_BDBUF_MAX_WRITE_BLOCKS, CONFIGURE_SWAPOUT_TASK_PRIORITY, @@ -1253,7 +1253,7 @@ rtems_fs_init_functions_t rtems_fs_init_helper = /** * This is the maximum number of Ada tasks which can be concurrently - * in existence. Twenty (20) are required to run all tests in the + * in existence. Twenty (20) are required to run all tests in the * ACATS (formerly ACVC). */ #ifndef CONFIGURE_MAXIMUM_ADA_TASKS @@ -1665,7 +1665,7 @@ rtems_fs_init_functions_t rtems_fs_init_helper = (CONFIGURE_MAXIMUM_TASKS + \ CONFIGURE_MAXIMUM_POSIX_THREADS + CONFIGURE_MAXIMUM_ADA_TASKS + \ CONFIGURE_MAXIMUM_ITRON_TASKS \ - ) + ) /** * This macro reserves the memory required by the statically configured @@ -1815,7 +1815,7 @@ rtems_fs_init_functions_t rtems_fs_init_helper = CONFIGURE_MEMORY_FOR_ITRON_MESSAGE_BUFFERS( CONFIGURE_MAXIMUM_ITRON_MESSAGE_BUFFERS ), CONFIGURE_MEMORY_FOR_ITRON_PORTS( CONFIGURE_MAXIMUM_ITRON_PORTS ), - CONFIGURE_MEMORY_FOR_ITRON_MEMORY_POOLS( + CONFIGURE_MEMORY_FOR_ITRON_MEMORY_POOLS( CONFIGURE_MAXIMUM_ITRON_MEMORY_POOLS ), CONFIGURE_MEMORY_FOR_ITRON_FIXED_MEMORY_POOLS( CONFIGURE_MAXIMUM_ITRON_FIXED_MEMORY_POOLS ), @@ -1914,7 +1914,7 @@ rtems_fs_init_functions_t rtems_fs_init_helper = * needed without requring being high enough logical to * include the full configuration table. */ - uint32_t rtems_minimum_stack_size = + uint32_t rtems_minimum_stack_size = CONFIGURE_MINIMUM_TASK_STACK_SIZE; /** This variable specifies the maximum priority value that @@ -1980,7 +1980,7 @@ rtems_fs_init_functions_t rtems_fs_init_helper = #if defined(CONFIGURE_POSIX_INIT_THREAD_TABLE) || \ defined(CONFIGURE_POSIX_HAS_OWN_INIT_THREAD_TABLE) void _POSIX_Threads_Initialize_user_threads_body(void); - void (*_POSIX_Threads_Initialize_user_threads_p)(void) = + void (*_POSIX_Threads_Initialize_user_threads_p)(void) = _POSIX_Threads_Initialize_user_threads_body; #else void (*_POSIX_Threads_Initialize_user_threads_p)(void) = NULL; @@ -1997,7 +1997,7 @@ rtems_fs_init_functions_t rtems_fs_init_helper = #if defined(CONFIGURE_ITRON_INIT_TASK_TABLE) || \ defined(CONFIGURE_ITRON_HAS_OWN_INIT_TASK_TABLE) void _ITRON_Task_Initialize_user_tasks_body(void); - void (*_ITRON_Initialize_user_tasks_p)(void) = + void (*_ITRON_Initialize_user_tasks_p)(void) = _ITRON_Task_Initialize_user_tasks_body; #else void (*_ITRON_Initialize_user_tasks_p)(void) = NULL; @@ -2099,8 +2099,8 @@ rtems_fs_init_functions_t rtems_fs_init_helper = * You must either explicity include or exclude the clock driver. * It is such a common newbie error to leave it out. Maybe this * will put an end to it. - * - * NOTE: If you are using the timer driver, it is considered + * + * NOTE: If you are using the timer driver, it is considered * mutually exclusive with the clock driver because the * drivers are assumed to use the same "timer" hardware * on many boards. @@ -2136,7 +2136,7 @@ rtems_fs_init_functions_t rtems_fs_init_helper = (CONFIGURE_MAXIMUM_PRIORITY != 255)) #error "Maximum priority is not 1 less than a power of 2 between 4 and 256" #endif - + #if (CONFIGURE_MAXIMUM_PRIORITY > PRIORITY_DEFAULT_MAXIMUM) #error "Maximum priority configured higher than supported by target." #endif diff --git a/cpukit/sapi/include/rtems/chain.h b/cpukit/sapi/include/rtems/chain.h index 77ff4fceac..6050da3dfa 100644 --- a/cpukit/sapi/include/rtems/chain.h +++ b/cpukit/sapi/include/rtems/chain.h @@ -7,7 +7,7 @@ * code. * */ - + /* * COPYRIGHT (c) 1989-2008. * On-Line Applications Research Corporation (OAR). diff --git a/cpukit/sapi/include/rtems/config.h b/cpukit/sapi/include/rtems/config.h index 1b18addfad..7667794ec5 100644 --- a/cpukit/sapi/include/rtems/config.h +++ b/cpukit/sapi/include/rtems/config.h @@ -1,7 +1,7 @@ /** * @file rtems/config.h */ - + /* * This include file contains the table of user defined configuration * parameters. @@ -80,7 +80,7 @@ typedef struct { /** This is the maximum number of proxies. */ uint32_t maximum_proxies; - /** The MPCI Receive server is assumed to have a stack of at least + /** The MPCI Receive server is assumed to have a stack of at least * minimum stack size. This field specifies the amount of extra * stack this task will be given in bytes. */ @@ -154,7 +154,7 @@ typedef struct { /** If this element is TRUE, then RTEMS will zero the Executive Workspace. * When this element is FALSE, it is assumed that the BSP or invoking - * environment has ensured that memory was cleared before RTEMS was + * environment has ensured that memory was cleared before RTEMS was * invoked. */ bool do_zero_of_workspace; @@ -225,7 +225,7 @@ extern rtems_configuration_table Configuration; #define rtems_configuration_get_idle_task_stack_size() \ (Configuration.idle_task_stack_size) -/* XXX We need to get this from the generated table +/* XXX We need to get this from the generated table * since BSPs need it before the pointer is set. * Eventually all should be done this way. */ @@ -239,7 +239,7 @@ extern rtems_configuration_table Configuration; #define rtems_configuration_get_stack_free_hook() \ (Configuration.stack_free_hook) - + /** * This macro assists in accessing the field which indicates whether * RTEMS is responsible for zeroing the Executive Workspace. diff --git a/cpukit/sapi/include/rtems/extension.h b/cpukit/sapi/include/rtems/extension.h index b7b09126a5..ed29f72f74 100644 --- a/cpukit/sapi/include/rtems/extension.h +++ b/cpukit/sapi/include/rtems/extension.h @@ -5,7 +5,7 @@ * * @brief User Extensions API. */ - + /* * COPYRIGHT (c) 1989-2008. * On-Line Applications Research Corporation (OAR). @@ -52,7 +52,7 @@ typedef User_extensions_routine * * @brief The User Extensions Manager allows the application developer to * augment the executive by allowing them to supply extension routines which - * are invoked at critical system events. + * are invoked at critical system events. * * @section ClassicUserExtensionsSets Extension Sets * @@ -152,12 +152,12 @@ typedef User_extensions_routine * - Task deletion * - Task context switch * - Post task context switch - * - Task begins to execute + * - Task begins to execute * * At the following system events, the extensions are invoked in reverse order: * * - Task deletion - * - Fatal error detection + * - Fatal error detection * * At these system events, the extensions are invoked in reverse order to * insure that if an extension set is built upon another, the more complicated diff --git a/cpukit/sapi/include/rtems/fatal.h b/cpukit/sapi/include/rtems/fatal.h index 8185726ebe..413b0f5df0 100644 --- a/cpukit/sapi/include/rtems/fatal.h +++ b/cpukit/sapi/include/rtems/fatal.h @@ -1,7 +1,7 @@ /** * @file rtems/fatal.h */ - + /* * This include file contains constants and prototypes related * to the Fatal Error Manager. This manager processes all fatal or diff --git a/cpukit/sapi/include/rtems/init.h b/cpukit/sapi/include/rtems/init.h index 77d3e0885a..2a6a01f601 100644 --- a/cpukit/sapi/include/rtems/init.h +++ b/cpukit/sapi/include/rtems/init.h @@ -13,7 +13,7 @@ * + initialize the RTEMS executive * + shutdown the RTEMS executive */ - + /* * COPYRIGHT (c) 1989-2008. * On-Line Applications Research Corporation (OAR). diff --git a/cpukit/sapi/include/rtems/io.h b/cpukit/sapi/include/rtems/io.h index bf0057e5e6..e47d66556d 100644 --- a/cpukit/sapi/include/rtems/io.h +++ b/cpukit/sapi/include/rtems/io.h @@ -5,7 +5,7 @@ * * @brief Classic Input/Output Manager API. */ - + /* * COPYRIGHT (c) 1989-2008. * On-Line Applications Research Corporation (OAR). diff --git a/cpukit/sapi/include/rtems/sptables.h b/cpukit/sapi/include/rtems/sptables.h index f9204164d1..e4fbd226bf 100644 --- a/cpukit/sapi/include/rtems/sptables.h +++ b/cpukit/sapi/include/rtems/sptables.h @@ -4,7 +4,7 @@ * This include file contains the executive's pre-initialized tables * used when in a single processor configuration. */ - + /* * COPYRIGHT (c) 1989-1999. * On-Line Applications Research Corporation (OAR). diff --git a/cpukit/sapi/src/extensioncreate.c b/cpukit/sapi/src/extensioncreate.c index 9e939f57af..ae9c98010b 100644 --- a/cpukit/sapi/src/extensioncreate.c +++ b/cpukit/sapi/src/extensioncreate.c @@ -5,7 +5,7 @@ * * @brief User Extensions Implementation. */ - + /* * COPYRIGHT (c) 1989-2007. * On-Line Applications Research Corporation (OAR). diff --git a/cpukit/sapi/src/extensiondelete.c b/cpukit/sapi/src/extensiondelete.c index 02e08767fd..4f5be6337b 100644 --- a/cpukit/sapi/src/extensiondelete.c +++ b/cpukit/sapi/src/extensiondelete.c @@ -5,7 +5,7 @@ * * @brief User Extensions Implementation. */ - + /* * COPYRIGHT (c) 1989-2007. * On-Line Applications Research Corporation (OAR). diff --git a/cpukit/sapi/src/extensionident.c b/cpukit/sapi/src/extensionident.c index 626c106b0b..e59f39d7dc 100644 --- a/cpukit/sapi/src/extensionident.c +++ b/cpukit/sapi/src/extensionident.c @@ -5,7 +5,7 @@ * * @brief User Extensions Implementation. */ - + /* * COPYRIGHT (c) 1989-2007. * On-Line Applications Research Corporation (OAR). diff --git a/cpukit/sapi/src/io.c b/cpukit/sapi/src/io.c index c3cdf6ea7f..65cb43d568 100644 --- a/cpukit/sapi/src/io.c +++ b/cpukit/sapi/src/io.c @@ -67,7 +67,7 @@ void _IO_Manager_initialization(void) * have to allocate a new driver table and copy theirs to it. */ - _IO_Driver_address_table = (rtems_driver_address_table *) + _IO_Driver_address_table = (rtems_driver_address_table *) _Workspace_Allocate_or_fatal_error( sizeof( rtems_driver_address_table ) * ( number_of_drivers ) ); diff --git a/cpukit/sapi/src/ioregisterdriver.c b/cpukit/sapi/src/ioregisterdriver.c index 8a81e5c0ee..30d10eb808 100644 --- a/cpukit/sapi/src/ioregisterdriver.c +++ b/cpukit/sapi/src/ioregisterdriver.c @@ -5,7 +5,7 @@ * * @brief Classic Input/Output Manager implementation. */ - + /* * COPYRIGHT (c) 1989-2009. * On-Line Applications Research Corporation (OAR). @@ -41,7 +41,7 @@ static rtems_status_code rtems_io_obtain_major_number( { rtems_device_major_number n = _IO_Number_of_drivers; rtems_device_major_number m = 0; - + /* major is error checked by caller */ for ( m = 0; m < n; ++m ) { -- cgit v1.2.3