From 33c3b54d57b50ac3d236e2660556a9a2ecb8dcad Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Sun, 29 Nov 2009 11:57:23 +0000 Subject: Whitespace removal. --- cpukit/rtems/include/rtems/rtems/attr.h | 4 ++-- cpukit/rtems/include/rtems/rtems/barrier.h | 4 ++-- cpukit/rtems/include/rtems/rtems/clock.h | 6 +++--- cpukit/rtems/include/rtems/rtems/config.h | 18 +++++++++--------- cpukit/rtems/include/rtems/rtems/dpmem.h | 2 +- cpukit/rtems/include/rtems/rtems/event.h | 2 +- cpukit/rtems/include/rtems/rtems/intr.h | 14 +++++++------- cpukit/rtems/include/rtems/rtems/message.h | 2 +- cpukit/rtems/include/rtems/rtems/modes.h | 2 +- cpukit/rtems/include/rtems/rtems/object.h | 8 ++++---- cpukit/rtems/include/rtems/rtems/part.h | 2 +- cpukit/rtems/include/rtems/rtems/ratemon.h | 16 ++++++++-------- cpukit/rtems/include/rtems/rtems/region.h | 4 ++-- cpukit/rtems/include/rtems/rtems/sem.h | 2 +- cpukit/rtems/include/rtems/rtems/tasks.h | 8 ++++---- cpukit/rtems/include/rtems/rtems/timer.h | 2 +- 16 files changed, 48 insertions(+), 48 deletions(-) (limited to 'cpukit/rtems/include/rtems') diff --git a/cpukit/rtems/include/rtems/rtems/attr.h b/cpukit/rtems/include/rtems/rtems/attr.h index 5b3480f967..0206ad5cc6 100644 --- a/cpukit/rtems/include/rtems/rtems/attr.h +++ b/cpukit/rtems/include/rtems/rtems/attr.h @@ -52,13 +52,13 @@ typedef uint32_t rtems_attribute; */ #define RTEMS_GLOBAL 0x00000002 -/** +/** * This is the attribute constant which reflects that blocking * tasks will be managed using FIFO discipline. */ #define RTEMS_FIFO 0x00000000 -/** +/** * This is the attribute constant which reflects that blocking * tasks will be managed using task priority discipline. */ diff --git a/cpukit/rtems/include/rtems/rtems/barrier.h b/cpukit/rtems/include/rtems/rtems/barrier.h index d598bd101b..566d0299e5 100644 --- a/cpukit/rtems/include/rtems/rtems/barrier.h +++ b/cpukit/rtems/include/rtems/rtems/barrier.h @@ -36,7 +36,7 @@ /**@{*/ /** - * This constant is defined to extern most of the time when using + * This constant is defined to extern most of the time when using * this header file. However by defining it to nothing, the data * declared in this header file can be instantiated. This is done * in a single per manager file. @@ -115,7 +115,7 @@ rtems_status_code rtems_barrier_create( * extent of the search for the ID of the barrier named name. * The search can be limited to a particular node or allowed to * encompass all nodes. - * + * * @param[in] name is the name of this barrier instance. * @param[out] id will contain the id of this barrier. * diff --git a/cpukit/rtems/include/rtems/rtems/clock.h b/cpukit/rtems/include/rtems/rtems/clock.h index 124d04e8d8..503c4ad6de 100644 --- a/cpukit/rtems/include/rtems/rtems/clock.h +++ b/cpukit/rtems/include/rtems/rtems/clock.h @@ -80,7 +80,7 @@ typedef Watchdog_Nanoseconds_since_last_tick_routine rtems_nanoseconds_extension_routine; /** - * @brief Obtain Current Time of Day + * @brief Obtain Current Time of Day * * This routine implements the rtems_clock_get directive. It returns * one of the following: @@ -228,11 +228,11 @@ rtems_status_code rtems_clock_set_nanoseconds_extension( * * This directive returns the system uptime. * - * @param[in] uptime is a pointer to the time structure + * @param[in] uptime is a pointer to the time structure * * @return This method returns RTEMS_SUCCESSFUL if there was not an * error. Otherwise, a status code is returned indicating the - * source of the error. If successful, the uptime will be + * source of the error. If successful, the uptime will be * filled in. */ rtems_status_code rtems_clock_get_uptime( diff --git a/cpukit/rtems/include/rtems/rtems/config.h b/cpukit/rtems/include/rtems/rtems/config.h index c89207de85..2217463d5a 100644 --- a/cpukit/rtems/include/rtems/rtems/config.h +++ b/cpukit/rtems/include/rtems/rtems/config.h @@ -44,7 +44,7 @@ extern "C" { */ typedef struct { /** - * This field contains the maximum number of Classic API + * This field contains the maximum number of Classic API * Tasks which are configured for this application. */ uint32_t maximum_tasks; @@ -56,51 +56,51 @@ typedef struct { bool notepads_enabled; /** - * This field contains the maximum number of Classic API + * This field contains the maximum number of Classic API * Timers which are configured for this application. */ uint32_t maximum_timers; /** - * This field contains the maximum number of Classic API + * This field contains the maximum number of Classic API * Semaphores which are configured for this application. */ uint32_t maximum_semaphores; /** - * This field contains the maximum number of Classic API + * This field contains the maximum number of Classic API * Message Queues which are configured for this application. */ uint32_t maximum_message_queues; /** - * This field contains the maximum number of Classic API + * This field contains the maximum number of Classic API * Partitions which are configured for this application. */ uint32_t maximum_partitions; /** - * This field contains the maximum number of Classic API + * This field contains the maximum number of Classic API * Regions which are configured for this application. */ uint32_t maximum_regions; /** - * This field contains the maximum number of Classic API + * This field contains the maximum number of Classic API * Dual Ported Memory Areas which are configured for this * application. */ uint32_t maximum_ports; /** - * This field contains the maximum number of Classic API + * This field contains the maximum number of Classic API * Rate Monotonic Periods which are configured for this * application. */ uint32_t maximum_periods; /** - * This field contains the maximum number of Classic API + * This field contains the maximum number of Classic API * Barriers which are configured for this application. */ uint32_t maximum_barriers; diff --git a/cpukit/rtems/include/rtems/rtems/dpmem.h b/cpukit/rtems/include/rtems/rtems/dpmem.h index a511024856..f8b1cc8064 100644 --- a/cpukit/rtems/include/rtems/rtems/dpmem.h +++ b/cpukit/rtems/include/rtems/rtems/dpmem.h @@ -30,7 +30,7 @@ #define _RTEMS_RTEMS_DPMEM_H /** - * This constant is defined to extern most of the time when using + * This constant is defined to extern most of the time when using * this header file. However by defining it to nothing, the data * declared in this header file can be instantiated. This is done * in a single per manager file. diff --git a/cpukit/rtems/include/rtems/rtems/event.h b/cpukit/rtems/include/rtems/rtems/event.h index 2ac4692171..8006762951 100644 --- a/cpukit/rtems/include/rtems/rtems/event.h +++ b/cpukit/rtems/include/rtems/rtems/event.h @@ -26,7 +26,7 @@ #define _RTEMS_RTEMS_EVENT_H /** - * This constant is defined to extern most of the time when using + * This constant is defined to extern most of the time when using * this header file. However by defining it to nothing, the data * declared in this header file can be instantiated. This is done * in a single per manager file. diff --git a/cpukit/rtems/include/rtems/rtems/intr.h b/cpukit/rtems/include/rtems/rtems/intr.h index 1576416879..9b0b1b4608 100644 --- a/cpukit/rtems/include/rtems/rtems/intr.h +++ b/cpukit/rtems/include/rtems/rtems/intr.h @@ -62,7 +62,7 @@ typedef rtems_isr ( *rtems_isr_entry )( #if (CPU_SIMPLE_VECTORED_INTERRUPTS == TRUE) /** * @brief Implementation of the rtems_interrupt_catch directive. - * + * * This directive installs @a new_isr_handler as the RTEMS interrupt service * routine for the interrupt vector with number @a vector. The previous RTEMS * interrupt service routine is returned in @a old_isr_handler. @@ -77,7 +77,7 @@ rtems_status_code rtems_interrupt_catch( /** * @brief Disables all maskable interrupts and returns the previous level in * @a _isr_cookie. - * + * * @note The interrupt level shall be of type @ref rtems_interrupt_level. */ #define rtems_interrupt_disable( _isr_cookie ) \ @@ -86,7 +86,7 @@ rtems_status_code rtems_interrupt_catch( /** * @brief Enables maskable interrupts to the level indicated by @a * _isr_cookie. - * + * * @note The interrupt level shall be of type @ref rtems_interrupt_level. */ #define rtems_interrupt_enable( _isr_cookie ) \ @@ -95,7 +95,7 @@ rtems_status_code rtems_interrupt_catch( /** * @brief Temporarily enables maskable interrupts to the level in @a * _isr_cookie before redisabling them. - * + * * @note The interrupt level shall be of type @ref rtems_interrupt_level. */ #define rtems_interrupt_flash( _isr_cookie ) \ @@ -104,7 +104,7 @@ rtems_status_code rtems_interrupt_catch( /** * @brief Returns true if the processor is currently servicing an interrupt * and false otherwise. - * + * * A return value of true indicates that the caller is an interrupt service * routine and @b not a thread. The directives available to an interrupt * service routine are restricted. @@ -114,14 +114,14 @@ rtems_status_code rtems_interrupt_catch( /** * @brief This routine generates an interrupt. - * + * * @note No implementation. */ #define rtems_interrupt_cause( _interrupt_to_cause ) /** * @brief This routine clears the specified interrupt. - * + * * @note No implementation. */ #define rtems_interrupt_clear( _interrupt_to_clear ) diff --git a/cpukit/rtems/include/rtems/rtems/message.h b/cpukit/rtems/include/rtems/rtems/message.h index 772f9d3654..f4e73c3cbc 100644 --- a/cpukit/rtems/include/rtems/rtems/message.h +++ b/cpukit/rtems/include/rtems/rtems/message.h @@ -31,7 +31,7 @@ #define _RTEMS_RTEMS_MESSAGE_H /** - * This constant is defined to extern most of the time when using + * This constant is defined to extern most of the time when using * this header file. However by defining it to nothing, the data * declared in this header file can be instantiated. This is done * in a single per manager file. diff --git a/cpukit/rtems/include/rtems/rtems/modes.h b/cpukit/rtems/include/rtems/rtems/modes.h index b531a27b5d..0665d17c8b 100644 --- a/cpukit/rtems/include/rtems/rtems/modes.h +++ b/cpukit/rtems/include/rtems/rtems/modes.h @@ -55,7 +55,7 @@ typedef uint32_t Modes_Control; * current execution mode. */ #define RTEMS_CURRENT_MODE 0 - + /** This mode constant corresponds to the timeslice enable/disable bit. */ #define RTEMS_TIMESLICE_MASK 0x00000200 diff --git a/cpukit/rtems/include/rtems/rtems/object.h b/cpukit/rtems/include/rtems/rtems/object.h index 5a6e97189a..2d473b33d3 100644 --- a/cpukit/rtems/include/rtems/rtems/object.h +++ b/cpukit/rtems/include/rtems/rtems/object.h @@ -245,7 +245,7 @@ rtems_status_code rtems_object_set_name( /** * @brief Get Lowest Valid Class Value * - * This method returns the lowest valid value Class for the + * This method returns the lowest valid value Class for the * specified @a api. Each API supports a different number * of object classes. * @@ -261,7 +261,7 @@ int rtems_object_api_minimum_class( /** * @brief Get Highest Valid Class Value * - * This method returns the highest valid value Class for the + * This method returns the highest valid value Class for the * specified @a api. Each API supports a different number * of object classes. * @@ -278,7 +278,7 @@ int rtems_object_api_maximum_class( /** * @brief Get Highest Valid Class Value * - * This method returns the lowest valid value Class for the + * This method returns the lowest valid value Class for the * specified @a api. Each API supports a different number * of object classes. * @@ -321,7 +321,7 @@ const char *rtems_object_get_api_name( * the string "BAD CLASS" */ const char *rtems_object_get_api_class_name( - int the_api, + int the_api, int the_class ); diff --git a/cpukit/rtems/include/rtems/rtems/part.h b/cpukit/rtems/include/rtems/rtems/part.h index 8a41ad2ee6..e7601d6589 100644 --- a/cpukit/rtems/include/rtems/rtems/part.h +++ b/cpukit/rtems/include/rtems/rtems/part.h @@ -29,7 +29,7 @@ #define _RTEMS_RTEMS_PART_H /** - * This constant is defined to extern most of the time when using + * This constant is defined to extern most of the time when using * this header file. However by defining it to nothing, the data * declared in this header file can be instantiated. This is done * in a single per manager file. diff --git a/cpukit/rtems/include/rtems/rtems/ratemon.h b/cpukit/rtems/include/rtems/rtems/ratemon.h index 19eed0c2cf..20cccc5d46 100644 --- a/cpukit/rtems/include/rtems/rtems/ratemon.h +++ b/cpukit/rtems/include/rtems/rtems/ratemon.h @@ -29,7 +29,7 @@ #define _RTEMS_RTEMS_RATEMON_H /** - * This constant is defined to extern most of the time when using + * This constant is defined to extern most of the time when using * this header file. However by defining it to nothing, the data * declared in this header file can be instantiated. This is done * in a single per manager file. @@ -107,32 +107,32 @@ extern "C" { */ typedef enum { /** - * This value indicates the period is off the watchdog chain, + * This value indicates the period is off the watchdog chain, * and has never been initialized. */ RATE_MONOTONIC_INACTIVE, /** - * This value indicates the period is on the watchdog chain, and + * This value indicates the period is on the watchdog chain, and * the owner is blocked waiting on it. */ RATE_MONOTONIC_OWNER_IS_BLOCKING, /** - * This value indicates the period is on the watchdog chain, and + * This value indicates the period is on the watchdog chain, and * running. The owner should be executed or blocked waiting on * another object. */ RATE_MONOTONIC_ACTIVE, /** - * This value indicates the period is on the watchdog chain, and + * This value indicates the period is on the watchdog chain, and * has expired. The owner should be blocked waiting for the next period. */ RATE_MONOTONIC_EXPIRED_WHILE_BLOCKING, /** - * This value indicates the period is off the watchdog chain, and + * This value indicates the period is off the watchdog chain, and * has expired. The owner is still executing and has taken too much * all time to complete this iteration of the period. */ @@ -150,7 +150,7 @@ typedef enum { * statistics kept on each period instance. * * @note The public structure uses struct timespec while the - * internal one uses Timestamp_Control. + * internal one uses Timestamp_Control. */ typedef struct { /** This field contains the number of periods executed. */ @@ -267,7 +267,7 @@ typedef struct { */ Rate_monotonic_Statistics Statistics; } Rate_monotonic_Control; - + /** * @brief Rate Monotonic Period Class Management Structure * diff --git a/cpukit/rtems/include/rtems/rtems/region.h b/cpukit/rtems/include/rtems/rtems/region.h index 905a580ec1..87f367eb81 100644 --- a/cpukit/rtems/include/rtems/rtems/region.h +++ b/cpukit/rtems/include/rtems/rtems/region.h @@ -47,7 +47,7 @@ /**@{*/ /** - * This constant is defined to extern most of the time when using + * This constant is defined to extern most of the time when using * this header file. However by defining it to nothing, the data * declared in this header file can be instantiated. This is done * in a single per manager file. @@ -153,7 +153,7 @@ rtems_status_code rtems_region_get_information( * @brief rtems_region_get_free_information * * This routine implements the rtems_region_get_free_information directive. - * This directive returns information about the free blocks in the + * This directive returns information about the free blocks in the * heap associated with this region. */ rtems_status_code rtems_region_get_free_information( diff --git a/cpukit/rtems/include/rtems/rtems/sem.h b/cpukit/rtems/include/rtems/rtems/sem.h index 406e1541f5..b4443241c0 100644 --- a/cpukit/rtems/include/rtems/rtems/sem.h +++ b/cpukit/rtems/include/rtems/rtems/sem.h @@ -29,7 +29,7 @@ #define _RTEMS_RTEMS_SEM_H /** - * This constant is defined to extern most of the time when using + * This constant is defined to extern most of the time when using * this header file. However by defining it to nothing, the data * declared in this header file can be instantiated. This is done * in a single per manager file. diff --git a/cpukit/rtems/include/rtems/rtems/tasks.h b/cpukit/rtems/include/rtems/rtems/tasks.h index 049e709fd6..c468583ed8 100644 --- a/cpukit/rtems/include/rtems/rtems/tasks.h +++ b/cpukit/rtems/include/rtems/rtems/tasks.h @@ -45,7 +45,7 @@ #include /** - * This constant is defined to extern most of the time when using + * This constant is defined to extern most of the time when using * this header file. However by defining it to nothing, the data * declared in this header file can be instantiated. This is done * in a single per manager file. @@ -205,7 +205,7 @@ typedef struct { * the RTEMS API to function correctly. * * @note Notepads must be the last entry in the structure and memory - * will be taken away from this structure when allocated if + * will be taken away from this structure when allocated if * notespads are disabled by the application configuration. */ typedef struct { @@ -232,7 +232,7 @@ RTEMS_TASKS_EXTERN Objects_Information _RTEMS_tasks_Information; /** * When the user configures a set of Classic API initialization tasks, * This variable will point to the method used to initialize them. - * + * * @note It is instantiated and initialized by confdefs.h based upon * application requirements. */ @@ -414,7 +414,7 @@ rtems_status_code rtems_task_wake_after( /** * @brief rtems_task_is_suspended - + * This directive returns a status indicating whether or not * the specified task is suspended. */ diff --git a/cpukit/rtems/include/rtems/rtems/timer.h b/cpukit/rtems/include/rtems/rtems/timer.h index deac24324a..696560feb6 100644 --- a/cpukit/rtems/include/rtems/rtems/timer.h +++ b/cpukit/rtems/include/rtems/rtems/timer.h @@ -36,7 +36,7 @@ #define _RTEMS_RTEMS_TIMER_H /** - * This constant is defined to extern most of the time when using + * This constant is defined to extern most of the time when using * this header file. However by defining it to nothing, the data * declared in this header file can be instantiated. This is done * in a single per manager file. -- cgit v1.2.3