summaryrefslogtreecommitdiffstats
path: root/cpukit/Makefile.am (follow)
Commit message (Collapse)AuthorAgeFilesLines
* score: Add stack free handler to TCBSebastian Huber2020-08-311-0/+1
| | | | | | | This avoids a dependency to the stack free function in the thread destruction. Update #3959.
* score: Move _Stack_Allocator_free to separate fileSebastian Huber2020-08-311-0/+1
| | | | | | This decouples the task stack allocation from the deallocation. Update #3959.
* score: Add _Stack_Allocator_do_initialize()Sebastian Huber2020-08-311-0/+1
| | | | | | | | Do the stack allocator initialization and sanity check only if a user-provided stack allocator was configured. This avoids a dependency of _Thread_Handler_initialization() on the stack allocator. Update #3959.
* config: Add zero file descriptor data structuresSebastian Huber2020-08-311-0/+1
| | | | | Fix linker errors in the minimum test program on some BSPs introduced by ced28f2cfcee6d32ad7bb72e16b235212eb2eaaf.
* rtems: Add _RTEMS_Name_to_id()Sebastian Huber2020-08-311-0/+1
| | | | | | | | | | Simplify object name to identifier directives. Using _RTEMS_Name_to_id() to implement the directives enables a tail call optimization. Change license to BSD-2-Clause according to file history. Update #3053.
* libtest: Add T_thread_switch_record()Sebastian Huber2020-08-111-0/+1
| | | | | | | | Add support to record thread switch events. This can be used to check that a blocking operation results in the expected sequence of thread switches. Update #3199.
* libtest: Add T_interrupt_test()Sebastian Huber2020-07-231-0/+1
| | | | Update #3199.
* libtest: Add rtems_test_run()Sebastian Huber2020-07-231-0/+1
| | | | Update #3199.
* libtest: Split POSIX Keys supportSebastian Huber2020-07-231-0/+1
| | | | Update #3199.
* libtest: Add T_get_one_clock_tick_busy()Sebastian Huber2020-07-231-0/+1
| | | | Update #3199.
* libtest: Add T_busy()Sebastian Huber2020-07-231-0/+1
| | | | Update #3199.
* epiphany: Remove support for this targetSebastian Huber2020-07-051-13/+0
| | | | | | | Due to an unmaintained toolchain (internal errors in GCC, no FSF GDB integration) the Epiphany architecture was obsoleted in RTEMS 5.1. Update #3941.
* rtems: Add rtems_get_copyright_notice()Sebastian Huber2020-05-061-0/+1
| | | | Update #3973.
* Revert "score: Fix _ISR_Stack_area_end"Sebastian Huber2020-04-051-1/+0
| | | | | This reverts commit 8e80876bdd54e36fb668eee655eec1dd588daf13 which broke several architectures.
* score: Fix _ISR_Stack_area_endSebastian Huber2020-04-031-0/+1
| | | | | | | | | | The _ISR_Stack_area_begin and _ISR_Stack_area_end symbols are in different sections. They must have the same alignment, otherwise the following linker directive could separate them: *(SORT_BY_ALIGNMENT (SORT_BY_NAME (.rtemsstack*))) Update #3799.
* record: Add rtems_record_dump()Sebastian Huber2020-03-181-0/+5
| | | | | | | | | Add rtems_record_dump_base64() and rtems_record_dump_base64_zlib(). Add CONFIGURE_RECORD_FATAL_DUMP_BASE64 and CONFIGURE_RECORD_FATAL_DUMP_BASE64_ZLIB configuration options. Update #3904.
* rtems: Add rtems_put_char()Sebastian Huber2020-03-161-0/+1
| | | | Update #3904.
* score: Add _IO_Base64()Sebastian Huber2020-03-161-0/+1
| | | | Update #3904.
* imfs: Replace devfs with an IMFS specializationSebastian Huber2020-03-091-10/+1
| | | | | | | | | | | | | | | | Add a simplified path evaluation function IMFS_eval_path_devfs() for a device only IMFS configuration. The code size can be further reduced by the application if it disables the support for legacy IO drivers via: #define CONFIGURE_IMFS_DISABLE_MKNOD #define CONFIGURE_IMFS_DISABLE_MKNOD_DEVICE Obsolete CONFIGURE_MAXIMUM_DEVICES. Remove BSP_MAXIMUM_DEVICES. Update #3894. Update #3898.
* imfs: Add IMFS_add_node()Sebastian Huber2020-03-041-0/+2
| | | | Update #3894.
* rtems: rtems_scheduler_get_processor_maximum()Sebastian Huber2020-03-041-2/+0
| | | | | | | | | | | | In uniprocessor configurations, use compile-time constants for rtems_scheduler_get_processor_maximum() and rtems_scheduler_get_processor(). This helps compilers and static analyzers to deduce that some loop bodies are only executed once and some conditional statements have a fixed outcome (may improve code generation and reduce false positives). In SMP configurations, directly provide the internal implementation for performance reasons.
* rtems: Add rtems_scheduler_map_priority_from_posix()Sebastian Huber2020-03-031-0/+1
| | | | Update #3881.
* rtems: Add rtems_scheduler_map_priority_to_posix()Sebastian Huber2020-03-031-0/+1
| | | | Update #3881.
* config: Initialize IO drivers on demandSebastian Huber2020-02-261-0/+1
|
* config: Add <rtems/confdefs/malloc.h>Sebastian Huber2020-02-251-0/+2
| | | | | | | | | | | Remove all comments and copyrightable content from the moved content. Use BSD-2-Clause license for new file. Move the default configuration to library files so that application configurations do not include the definitions for the default case. Update #3053. Update #3875.
* config: Add _Workspace_Is_unifiedSebastian Huber2020-02-251-0/+1
| | | | | | | | | Move the unified workspace configuration constant out of the configuration table. Provide a default definition of the unified workspace constant. Update #3875.
* config: Add _Thread_Idle_bodySebastian Huber2020-02-251-0/+1
| | | | | | | | | Move the idle thread body configuration constant out of the configuration table. Provide a default definition of the idle thread body constant. Update #3875.
* config: Add _Watchdog_Ticks_per_timesliceSebastian Huber2020-02-251-0/+1
| | | | | | | | | | Move the ticks per timeslice configuration constant out of the configuration table. Add WATCHDOG_TICKS_PER_TIMESLICE_DEFAULT and use it to provide a default definition of the watchdog ticks per timeslice constant. Update #3875.
* config: Simplify initialization task configSebastian Huber2020-02-251-0/+2
| | | | | | | | | | With the removal of the CONFIGURE_HAS_OWN_INIT_TASK_TABLE configuration option at most one Classic API user initialization task can be configured. Provide an RTEMS API configuration table for backward compatibility. Update #3873.
* score: Simplify _Thread_Initialize()Sebastian Huber2020-02-121-0/+1
| | | | | | | | Allocate new thread queue heads during objects information extend. This removes an error case and the last dependency on the workspace in _Thread_Initialize(). Update #3835.
* score: Split up objects freeSebastian Huber2020-02-121-0/+1
| | | | | | | | Split up the different objects free methods into separate functions. This helps to avoid a dependency on the workspace in case no objects or a static set of objects is configured. Update #3835.
* score: Split up objects allocationSebastian Huber2020-02-121-0/+3
| | | | | | | | | | | Split up the different objects allocation methods into separate functions. This helps to avoid a dependency on the workspace in case no objects or a static set of objects is configured. Change license to BSD-2-Clause according to file histories. Update #3053. Update #3835.
* score: Split stack allocator configurationSebastian Huber2020-02-121-0/+1
| | | | | | This allows the linker garbage collection to perform its work. Update #3835.
* score: Simplify TLS area allocationSebastian Huber2020-02-121-0/+2
| | | | | | Use the stack area to allocate the TLS area. Update #3835.
* config: Add CONFIGURE_DIRTY_MEMORYSebastian Huber2020-02-061-0/+1
| | | | | | | Replace the BSP_DIRTY_MEMORY BSP option with a CONFIGURE_DIRTY_MEMORY configuration option. Update #3843.
* sysinit: Add RTEMS_SYSINIT_ZERO_MEMORYSebastian Huber2020-02-061-0/+2
| | | | | | | | Use a dedicate system initialization step to zero the memory used for the workspace and C program heap. This avoids dead code in case CONFIGURE_ZERO_WORKSPACE_AUTOMATICALLY is not configured.
* config: Add CONFIGURE_VERBOSE_SYSTEM_INITIALIZATIONSebastian Huber2020-02-041-0/+1
| | | | Update #3861.
* score: Add _Memory_Fill()Sebastian Huber2020-02-041-0/+1
| | | | Update #3838.
* score: Add Memory HandlerSebastian Huber2020-02-041-0/+1
| | | | Update #3838.
* libtest: Add T_check_task_context() actionSebastian Huber2019-12-201-0/+1
|
* config: Add _MPCI_ConfigurationSebastian Huber2019-12-131-0/+1
| | | | | | | Replace the user MPCI configuration table with a system provided _MPCI_Configuration. Update #3735.
* Add TOD Hooks to allow BSP to take action when TOD is setJoel Sherrill2019-12-111-0/+4
| | | | | | | | | | | | Two use cases were envisioned for this. 1) a BSP or application which desires to update a real-time clock when the RTEMS TOD is set. 2) a paravirtualized BSP can use this to propagate setting the time in an RTEMS application to the hosting environment. This enables the entire set of applications in the virtualized environments to have a single consistent TOD.
* imfs: Add IMFS_make_linfile()Sebastian Huber2019-11-191-0/+1
| | | | Update #3818.
* termios: Add Capability to Generate SIGINTR and SIGQUITJoel Sherrill2019-10-081-0/+1
| | | | | | | | | | | | | | This patch adds the ability for termios to send SIGINTR on receipt of VINTR and SIGQUIT for VKILL and return -1/EINTR from read() on a termios channel. Importantly, this patch does not alter the default behavior or force POSIX signal code in just because termios is used. The application must explicitly enable the POSIX behavior of generating a signal upon receipt of these characters. This is discussed in the POSIX standard: https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap11.html Closes #3800.
* Revert "record: Add wrappers for malloc() functions"Sebastian Huber2019-10-021-5/+0
| | | | | | It was accidentally committed. This reverts commit a314544a278f1533ae001f742d7fe24fcee253e6.
* record: Add wrappers for malloc() functionsSebastian Huber2019-10-011-0/+5
| | | | | | | | | | Introduce new library librtemsrecordwrap.a which contains wrappers for operating system functions which produce entry/exit events. The wrappers can be selected during link time via the GNU ld --wrap option. Update #3665.
* record: Add more system eventsSebastian Huber2019-08-291-0/+1
| | | | | | | | | | Reduce the system dependencies to allow tracing of very low level functions, for example the interrupt disable/enable. Introduce general purpose RTEMS_RECORD_CALLER and RTEMS_RECORD_LINE events. Update #3665.
* libdebugger: ARM fixes for Cortex-A8 and ARM mode.Chris Johns2019-07-311-0/+1
| | | | | | | | | - Fix destorying the target and thread parts. - Fix the ARM backend to support Cortex-A8 and ARM mode code. - Use the DBGDSCR interrupt mask when single stepping. - Use the DBGDSCR method of entry to debug mode to filter the execptions. - Add support for BSPs to control the ARM backend.
* score: Add _SMP_Unicast_action()Sebastian Huber2019-05-201-0/+1
|
* Add RTEMS Test FrameworkSebastian Huber2019-03-271-0/+12
| | | | Update #3199.