config: Remove unused configuration constant

This commit is contained in:
Sebastian Huber
2020-02-13 16:56:20 +01:00
parent f61377826e
commit e85f168eac
2 changed files with 0 additions and 11 deletions

View File

@@ -2723,7 +2723,6 @@ struct _reent *__getreent(void)
*/ */
const rtems_configuration_table Configuration = { const rtems_configuration_table Configuration = {
CONFIGURE_EXECUTIVE_RAM_SIZE, /* required RTEMS workspace */ CONFIGURE_EXECUTIVE_RAM_SIZE, /* required RTEMS workspace */
CONFIGURE_MAXIMUM_USER_EXTENSIONS, /* maximum dynamic extensions */
CONFIGURE_MICROSECONDS_PER_TICK, /* microseconds per clock tick */ CONFIGURE_MICROSECONDS_PER_TICK, /* microseconds per clock tick */
CONFIGURE_TICKS_PER_TIMESLICE, /* ticks per timeslice quantum */ CONFIGURE_TICKS_PER_TIMESLICE, /* ticks per timeslice quantum */
CONFIGURE_IDLE_TASK_BODY, /* user's IDLE task */ CONFIGURE_IDLE_TASK_BODY, /* user's IDLE task */

View File

@@ -87,16 +87,6 @@ typedef struct {
*/ */
uintptr_t work_space_size; uintptr_t work_space_size;
/**
* This field contains the maximum number of POSIX API
* key value pairs which are configured for this application.
*
* @note There can be potentially be a key/value pair for
* every thread to use every key. But normally this
* many are not needed in a system.
*/
uint32_t maximum_key_value_pairs;
/** /**
* This field specifies the number of microseconds which elapse * This field specifies the number of microseconds which elapse
* between clock ticks. This is the basis for RTEMS timing. * between clock ticks. This is the basis for RTEMS timing.