summaryrefslogtreecommitdiffstats
path: root/cpukit (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove old CVS keywordsNick Withers2017-02-152-2/+2
| | | | Update #2388.
* sapi: Fix warningsSebastian Huber2017-02-151-1/+1
|
* shell: Fix warningsSebastian Huber2017-02-152-4/+8
|
* libdl: Fix warningSebastian Huber2017-02-151-1/+2
|
* score: Fix warningSebastian Huber2017-02-151-0/+2
|
* monitor: Print short and long task namesSebastian Huber2017-02-142-26/+53
| | | | | | Print wait object identifier only if it exists. Update #2858.
* Rename CONFIGURE_SMP_MAXIMUM_PROCESSORSSebastian Huber2017-02-142-44/+45
| | | | | | | Rename CONFIGURE_SMP_MAXIMUM_PROCESSORS to CONFIGURE_MAXIMUM_PROCESSORS since the SMP part is superfluous. Update #2894.
* shell: Fix warningsSebastian Huber2017-02-141-2/+0
|
* score: Fix warning in _Thread_Set_name()Sebastian Huber2017-02-141-1/+1
|
* dosfs: Fix msdos_find_file_in_directory()Sebastian Huber2017-02-141-1/+1
| | | | | | For a filename match the entry must match without anything remaining. Close #2908.
* Prefix confdefs.h internal def with an underscoreSebastian Huber2017-02-031-455/+352
| | | | Close #2895.
* termios: Fix static device initalizationSebastian Huber2017-02-032-7/+23
| | | | | | This enables early printk() support. Update #2838.
* score: Move _Thread_Scheduler_ask_for_help()Sebastian Huber2017-02-033-36/+34
| | | | | Move _Thread_Scheduler_ask_for_help(), rename it to _Thread_Ask_for_help() and make it static.
* score: Improve scheduler helping protocolSebastian Huber2017-02-0322-169/+88
| | | | | | | | | | | Only register ask for help requests in the scheduler unblock and yield operations. The actual ask for help operation is carried out during _Thread_Do_dispatch() on a processor related to the thread. This yields a better separation of scheduler instances. A thread of one scheduler instance should not be forced to carry out too much work for threads on other scheduler instances. Update #2556.
* sparc: Fix volatile clobberSebastian Huber2017-02-031-1/+1
| | | | | | | Do not adjust the stack pointer, since this is already done by the restor instruction. Update #2270.
* confdefs.h: SimplifySebastian Huber2017-02-031-3/+1
|
* confdefs.h: Only define _CONFIGURE_SMP_APPLICATION if RTEMS_SMP definedKevin Kirspel2017-02-021-0/+2
|
* rtems: Fix RTEMS_NO_TIMEOUT defineSebastian Huber2017-02-021-1/+1
| | | | | Cast the internal WATCHDOG_NO_TIMEOUT to the right type for a Classic API interval to avoid implict type conversion warnings.
* Remove CONFIGURE_SMP_APPLICATIONSebastian Huber2017-02-023-30/+18
| | | | | | Enable the SMP support if CONFIGURE_SMP_MAXIMUM_PROCESSORS > 1. Update #2893.
* rtems: Fix RTEMS_MAXIMUM_PRIORITY defineSebastian Huber2017-02-011-1/+1
| | | | | Cast the internal PRIORITY_MAXIMUM to the right type for a Classic API task priority to avoid integer conversion warnings.
* monitor: Add support for BSD wakeup messagesSebastian Huber2017-01-311-3/+17
|
* score: Add _Thread_queue_Object_nameSebastian Huber2017-01-3124-80/+151
| | | | | | | | | | | | | Add the special thread queue name _Thread_queue_Object_name to mark thread queues embedded in an object with identifier. Using the special thread state STATES_THREAD_QUEUE_WITH_IDENTIFIER is not reliable for this purpose since the thread wait information and thread state are protected by different SMP locks in separate critical sections. Remove STATES_THREAD_QUEUE_WITH_IDENTIFIER. Add and use _Thread_queue_Object_initialize(). Update #2858.
* score: Fix _Thread_Initialize()Sebastian Huber2017-01-312-2/+5
|
* score: Fix unused parameter warningSebastian Huber2017-01-301-0/+2
| | | | Close #2890.
* Complete STACK_CHECKER_EXTENSION. Fixes #2889Stavros Passas2017-01-301-0/+1
|
* bsps/arm: Fix Cortex-M DWT CPU counter.Christian Mauderer2017-01-301-1/+45
| | | | | | | | | It is necessary to enable the DWT using a special initialization sequence before the CYCCNT can be enabled. See for example the RESET_CYCLE_COUNTER in libbsp/arm/atsam/utils/utility.h. Note that this problem only occurs if no debugger is connected. A debugger most likely already enables the necessary module.
* rtems: Fix _Rate_monotonic_Renew_deadline()Kuan-Hsun Chen2017-01-301-4/+7
| | | | | | | | | | | | Prepare a precondition to prevent the potential integer overflow. Remove one redundant parameter in _Rate_monotonic_Renew_deadline(). sptests/sprmsched02: Create A test case for checking the overflow condition of postponed_jobs in rtems_rate_monotonic_period_status. Update #2885.
* score: Clarify _Heap_Extend()Sebastian Huber2017-01-271-5/+6
| | | | Update #1747.
* score: Fix typoSebastian Huber2017-01-271-1/+1
|
* score: Fix user extensions orderSebastian Huber2017-01-263-15/+26
| | | | | | | | | | | Use forward and reverse order for initial and dynamic extensions. This is the behaviour documented in the C Users Guide. Change thread terminate order to backward to be in line with the thread delete order. Change fatal error order to forward to ensure that initial extensions are called first due the peculiar execution context of fatal error extensions, see _Terminate() documentation. Update #2692.
* sapi: Add rtems_task_terminate_extensionSebastian Huber2017-01-261-0/+1
|
* Remove rtems_rate_monotonic_postponed_job_count()Kuan-Hsun Chen2017-01-263-34/+6
| | | | | | | | | | | Add a variable named "count" in rtems_rate_monotonic_period_status structure. Revise rtems_rate_monotonic_get_status() for the postponed job count. sptests/sp69: Add in the verification of the postponed job count for rtems_rate_monotonic_get_status(). Update #2795.
* score: Delete _CPU_Context_Fp_start()Sebastian Huber2017-01-2618-288/+14
| | | | | | | | | | Since the FP area pointer is passed by reference in _CPU_Context_Initialize_fp() the optional FP area adjustment via _CPU_Context_Fp_start() is superfluous. It is also wrong with respect to memory management, e.g. pointer passed to _Workspace_Free() may be not the one returned by _Workspace_Allocate(). Close #1400.
* posix: Fix use of uninitialized variableSebastian Huber2017-01-251-0/+2
| | | | Update #2859.
* Adding ARM VFP V2 supportKevin Kirspel2017-01-241-0/+6
|
* rtems: rtems_rate_monotonic_postponed_job_count()Sebastian Huber2017-01-241-12/+7
| | | | | | Use proper locking in SMP configurations. Update #2795.
* rtems: Fix _Rate_monotonic_Release_postponed_job()Sebastian Huber2017-01-241-5/+3
| | | | | | Use proper locking in SMP configurations. Update #2795.
* rtems: Fix _Rate_monotonic_Renew_deadline()Sebastian Huber2017-01-243-44/+21
| | | | | | | Make _Rate_monotonic_Renew_deadline() static and use proper locking in SMP configurations. Update #2795.
* sparc: Relax CPU_STACK_ALIGNMENTSebastian Huber2017-01-241-12/+3
| | | | Close #2352.
* Remove CPU_BIG_ENDIAN and CPU_LITTLE_ENDIANSebastian Huber2017-01-2417-310/+0
| | | | | | Use de-facto standard BYTE_ORDER instead. Close #2803.
* Use <sys/endian.h>Sebastian Huber2017-01-243-28/+12
| | | | Update #2803.
* Provide <endian.h> for glibc compatibilitySebastian Huber2017-01-243-0/+6
| | | | Update #2803.
* nfsclient: Fix suspicious conditionSebastian Huber2017-01-231-1/+2
| | | | Close #2700.
* sys/endian.h: Document FreeBSD originSebastian Huber2017-01-231-1/+1
|
* JFFS2: Fix typoSebastian Huber2017-01-191-1/+1
|
* classic: adjust names of RM postponed job functionsGedare Bloom2017-01-132-9/+14
| | | | closes #2795
* Enhancement of the RMS manager for the overrun handling.Kuan-Hsun Chen2017-01-134-9/+176
| | | | | | | | | | | | | | | Three additional functions: rtems_rate_monotonic_postponed_job_count, _Rate_monotonic_Renew_deadline, and _Rate_monotonic_Release_postponed_job. Four refined functions: _Rate_monotonic_Activate, _Rate_monotonic_Block_while_expired, rtems_rate_monotonic_period, _Rate_monotonic_Timeout. Rate_monotonic_Control contains one counter for counting the postponed jobs and one for recording the recent deadline. Update #2795.
* posix: shared memory supportGedare Bloom2017-01-1314-8/+882
| | | | | | | | | Add POSIX shared memory manager (Shm). Includes a hook-based approach for the backing memory storage that defaults to the Workspace, and a test is provided using the heap. A test is also provided for the basic use of mmap'ing a shared memory object. This test currently fails at the mmap stage due to no support for mmap.
* posix: fix typo in mmap argumentsGedare Bloom2017-01-131-2/+2
|
* posix: add stub implementations for mman functionsGedare Bloom2017-01-139-0/+222
|