summaryrefslogtreecommitdiff
path: root/spec/acfg/opt/RTEMS-ACFG-OPT-MAXFILEDESCRIPTORS.yml
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-03-27 13:12:12 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-03-27 18:28:51 +0100
commitc4fc8bd46be06c2ad4aed10e2372a4a065412216 (patch)
tree8c40ba3b82a80cf131558271af46600ec1fd5ba8 /spec/acfg/opt/RTEMS-ACFG-OPT-MAXFILEDESCRIPTORS.yml
parentee8b3c93b60dc6c24765af9143a9ef3daef17eca (diff)
spec: Convert integer feature options
Diffstat (limited to '')
-rw-r--r--spec/acfg/opt/RTEMS-ACFG-OPT-MAXFILEDESCRIPTORS.yml25
1 files changed, 13 insertions, 12 deletions
diff --git a/spec/acfg/opt/RTEMS-ACFG-OPT-MAXFILEDESCRIPTORS.yml b/spec/acfg/opt/RTEMS-ACFG-OPT-MAXFILEDESCRIPTORS.yml
index a0849681..94b504e4 100644
--- a/spec/acfg/opt/RTEMS-ACFG-OPT-MAXFILEDESCRIPTORS.yml
+++ b/spec/acfg/opt/RTEMS-ACFG-OPT-MAXFILEDESCRIPTORS.yml
@@ -1,22 +1,23 @@
SPDX-License-Identifier: CC-BY-SA-4.0
active: true
-appl-config-option-data-type: |
- Unsigned integer (``uint32_t``).
-appl-config-option-default-value: |
- If ``CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER`` is defined, then the
- default value is 3, otherwise the default value is 0. Three file
- descriptors allows RTEMS to support standard input, output, and error I/O
- streams on ``/dev/console``.
+appl-config-option-type: integer
+appl-config-option-default-value: 3
appl-config-option-description: |
- This configuration parameter is set to the maximum number of file like
- objects that can be concurrently open.
+ The value of this configuration option defines the maximum number of file
+ like objects that can be concurrently open.
appl-config-option-index:
- maximum file descriptors
appl-config-option-name: CONFIGURE_MAXIMUM_FILE_DESCRIPTORS
appl-config-option-notes: |
- None.
-appl-config-option-range: |
- Zero or positive.
+ The default value of three file descriptors allows RTEMS to support standard
+ input, output, and error I/O streams on ``/dev/console``.
+appl-config-option-constraint:
+ min: 0
+ max: '``SIZE_MAX``'
+ custom:
+ - |
+ It must be less than or equal to a BSP-specific value which depends on the
+ memory size of the platform available to the application.
copyrights:
- Copyright (C) 1988, 2008 On-Line Applications Research Corporation (OAR)
derived: false