Timeline



11/28/16:

12:28 Changeset in rtems [c09db57]5 by Sebastian Huber <sebastian.huber@…>
score: Fix thread queue context initialization Initialize the thread queue context with invalid data in debug configurations to catch missing set up steps.
03:23 Changeset in rtems-libbsd [f7a4107]55-freebsd-126-freebsd-12freebsd-9.3 by Chris Johns <chrisj@…>
Add a RTEMS Debugger TCP remote transport. The patch also adds support to libbsd's build system making source conditional on a configure check. The debugger support is not available on all architectures and this feature lets us test if is avaliable.

11/25/16:

18:21 Changeset in rtems [9bf9068]5 by Martin Erik Werner <martinerikwerner.aac@…>
or1k: Avoid multiple iterations over cache Previously, if the cache range operations were called with a range that was larger than the cache size, this would lead to multiple iterations over the cache, which is unnecessary. Limit this so that if the range is larger than the cache size, the operations will only iterate over the whole cache once.
18:21 Changeset in rtems [a59dd5c]5 by Martin Erik Werner <martinerikwerner.aac@…>
or1k: Remove secondary functions in cache manager Move the code of the _CPU_OR1K_Cache_{enable,disable}_* functions into the equivalent exported _CPU_cache_{enable,disable}_* functions instead, and then delete them, in order to reduce the code indirection and aid readability. This does not touch the currently unused prefetch, writeback, and lock functions.
18:21 Changeset in rtems [3b4ddaf]5 by Martin Erik Werner <martinerikwerner.aac@…>
or1k: Avoid excessive ISR toggle in cache manager Previously _ISR_Local_{disable,enable}() was executed twice for each cache line operation, and since operations over the entire cache were implemented by calling the single-line operations in a loop, this made those operations rather costly. Fix the double-toggle by calling _OR1K_mtspr() directly, and removing the now-unused corresponding _CPU_OR1K_Cache_* functions. Fix the entire-operations by moving the ISR toggle outside of the loop, and by calling _OR1K_mtspr() directly instead of the single-line operations. Also implement range functions, since otherwise the cache manager falls back on looping over the single-line operations.
18:21 Changeset in rtems [4dcaa48]5 by Martin Erik Werner <martinerikwerner.aac@…>
or1k: Indent & comment fix in cache.c * Fix indentation of variable declarations. * Change commented-out asm -> asm to meet c99 standard if uncommented.
18:21 Changeset in rtems [e639c026]5 by Martin Erik Werner <martinerikwerner.aac@…>
or1k: Add functions for entire cache operations Add functions for flushing and invalidating whole cache. Since we don't have system calls that can operate on anything more than a single cache line, these simply retrieves the cache size and iterates over the full size, invalidating each line. The current implementation assumes that there's only one level of cache. These changes were contributed by Antmicro under contract by ÅAC Microtec AB. Close #2602
04:13 Changeset in rtems [a0d4e99]5 by Chris Johns <chrisj@…>
cpukit: Add libdebugger, a remote debugger agent for GDB.

11/24/16:

22:45 Changeset in rtems [8fd465e]5 by Chris Johns <chrisj@…>
arm/zynq: Wait for the UART TX FIFO to empty on reset.
11:04 Changeset in rtems [0a9b6eb0]5 by Sebastian Huber <sebastian.huber@…>
libblock: Fix for RTEMS_DEBUG
11:01 Changeset in rtems-libbsd [269b559]55-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
ftpd: Use floating-point tasks due to syslog()
10:53 Changeset in rtems [bd0d585]5 by Sebastian Huber <sebastian.huber@…>
arm: Fix _CPU_ISR_Is_enabled() for ARMv7-M Update #2811.
09:49 Changeset in rtems [562b0a0]5 by Sebastian Huber <sebastian.huber@…>
bsps/arm: Add Cortex-M DWT CPU counter
07:32 Changeset in rtems [01ac1db]5 by Sebastian Huber <sebastian.huber@…>
powerpc: Fix interrupt profiling for e6500
05:13 Changeset in rtems [620b23e]5 by Sebastian Huber <sebastian.huber@…>
score: Optimize _Thread_queue_Enqueue() Move thread state for _Thread_queue_Enqueue() to the thread queue context. This reduces the parameter count of _Thread_queue_Enqueue() from five to four (ARM for example has only four function parameter registers). Since the thread state is used after several function calls inside _Thread_queue_Enqueue() this parameter was saved on the stack previously.
02:08 Ticket #2826 (arm_cp15_get_translation_table_base_control_register warning.) created by Chris Johns
arm_cp15_get_translation_table_base_control_register in …

11/23/16:

15:15 Changeset in rtems [4b5ff47]5 by Sebastian Huber <sebastian.huber@…>
score: Fix interrupt profiling Callers of _Thread_Do_dispatch() must have a valid Per_CPU_Control::Stats::thread_dispatch_disabled_instant. Call _Profiling_Outer_most_interrupt_entry_and_exit() with the interrupt stack to not exceed Per_CPU_Control::Interrupt_frame. Update #2751.
14:12 Changeset in rtems [d42cf33]5 by Sebastian Huber <sebastian.huber@…>
posix: Fix typo Update #2674.
13:17 Changeset in rtems-libbsd [cfec446]55-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
SLEEPQUEUE(9): Properly remove timeout timer
13:16 Changeset in rtems-libbsd [616ffa96]55-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
Use _Thread_Dispatch_direct()
13:13 Changeset in rtems-libbsd [87e3b46]55-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
rtems-bsd-mutex: Update due to API changes
13:06 Changeset in rtems-libbsd [1e554b81]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
media01: Scale with processor count
12:45 Changeset in rtems-docs [1727e62]5 by Sebastian Huber <sebastian.huber@…>
Improve fatal error chapter Update #2825.
12:43 Changeset in rtems [f6edd880]5 by Sebastian Huber <sebastian.huber@…>
score: Explicitly define the fatal source numbers Update #2825.
12:38 Changeset in rtems [73f9c2c]5 by Sebastian Huber <sebastian.huber@…>
smptests/smpfatal03: Use timer to provoke error Avoid use of internal _Thread_Dispatch_disable() function. Update #2825.
11:48 Changeset in rtems [bee0323]5 by Sebastian Huber <sebastian.huber@…>
score: Uncomment unused internal error codes Update #2825.
09:15 Changeset in rtems [1d18a902]5 by Sebastian Huber <sebastian.huber@…>
arm: Fix _ARMV4_Exception_interrupt Use the right register to determine if a thread dispatch is allowed and necessary. Update #2751.
06:56 Tickets #2822,​2823 batch updated by Sebastian Huber <sebastian.huber@…>
fixed: In a550b3f35a32e6c74c78aeda1154b1d901574168/rtems: […]
06:47 Changeset in rtems [a550b3f]5 by Sebastian Huber <sebastian.huber@…>
score: Force Per_CPU_Control::executing alignment This fixes the CPU ports with relaxed alignment restrictions, e.g. type alignment is less than the type size. Close #2822. Close #2823.
06:47 Ticket #2824 (arm/lpc23xx_tli800 no longer links tar01) closed by Sebastian Huber <sebastian.huber@…>
fixed: In 3142727602622f7e8f0a58fe3f71648292c3733a/rtems: […]
06:47 Changeset in rtems [31427276]5 by Sebastian Huber <sebastian.huber@…>
bsp/lpc23xx_tli800: Disable tar01 test Close #2824.
06:17 Changeset in rtems [db20706]5 by Sebastian Huber <sebastian.huber@…>
smptests/smpscheduler02: Fix task initialization Set scheduler before the task start.
06:16 Changeset in rtems [ec17ad4]5 by Sebastian Huber <sebastian.huber@…>
score: Delete obsolete scheduler debug aid
06:08 Ticket #2825 (Improve the fatal error handling chapter of the user manual) created by Sebastian Huber
At least replace the "Document me" markers with something useful.
06:04 Ticket #2802 (Test "libdl (RTL) 5" fails on SPARC targets) closed by Sebastian Huber
fixed
05:33 Changeset in rtems [8954368]5 by Sebastian Huber <sebastian.huber@…>
psxtests/psxkey08: Avoid rtems_semaphore_flush() Avoid rtems_semaphore_flush() to reduce the maximum thread dispatch disabled time of this test. Remove superfluous yield and malloc(). Ensure that no resource leak occurs.

11/22/16:

18:34 Ticket #2824 (arm/lpc23xx_tli800 no longer links tar01) created by Joel Sherrill
Normally I would add the test to those skipped but I thought this …
18:32 Ticket #2823 (Nearly all m68k BSPs do not Build on Master) created by Joel Sherrill
av5282 is the first In file included from …
18:30 Ticket #2822 (m32csim does not build on master) created by Joel Sherrill
In file included from …
17:16 TBR/UserApp/AMV_Technic_I edited by Pavel Pisa
(diff)
17:14 TBR/UserApp/AMV_Technic_I edited by Pavel Pisa
(diff)
16:58 Ticket #2821 (No BSPs Build on Master) closed by Joel Sherrill
invalid: Slaps head.. Doh! I switched the testing scripts over to 4.11 to get a warnings report and forgot to switch them back. Thanks.
11:51 Changeset in rtems [a6283671]5 by Sebastian Huber <sebastian.huber@…>
smptests/smplock01: Test TAS and TTAS locks Cache align locks in the context.
10:34 Changeset in rtems [46b5343]5 by Sebastian Huber <sebastian.huber@…>
libtests/cpuuse: Check status only We may own the allocator mutex during context switches.
09:53 Changeset in rtems [a4217c6]5 by Sebastian Huber <sebastian.huber@…>
score: Rename _Thread_queue_Enqueue_critical() Delete unused _Thread_queue_Enqueue() and rename _Thread_queue_Enqueue_critical() to _Thread_queue_Enqueue().
09:41 Changeset in rtems-libbsd [0cbb715]55-freebsd-126-freebsd-12 by Christian Mauderer <Christian.Mauderer@…>
rtwn: Import from FreeBSD.
09:13 Changeset in rtems [6a1b9e4]5 by Sebastian Huber <sebastian.huber@…>
sparc: Optimize _ISR_Handler() Use _Thread_Do_dispatch() instead of _Thread_Dispatch(). Restore the PSR[EF] state of the interrupted context via new system call syscall_irqdis_fp in case floating-point support is enabled.
07:46 Changeset in rtems [520e07db]5 by Sebastian Huber <sebastian.huber@…>
score: Add RTEMS_ALIAS()

11/21/16:

22:58 Ticket #2821 (No BSPs Build on Master) created by Joel Sherrill
I have the latest tools. All BSPs appear to fail like this: …
13:57 Changeset in rtems-libbsd [91fb6e3]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
rtems-kernel-page: Reclaim pages earlier
13:56 Changeset in rtems-libbsd [be708ff]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
ZONE(9): Reduce BUCKET_MAX to 128 Reduces the worst-case per-processor caches.
13:52 Changeset in rtems-docs [943bc94]5 by Sebastian Huber <sebastian.huber@…>
Rework fatal error chapter Update #2811.
10:40 Changeset in rtems [4e2bc0a]5 by Sebastian Huber <sebastian.huber@…>
arm: Fix Thumb-1 targets We cannot use the MRS or MSR instructions in Thumb-1 mode. Stay in ARM mode for the Thumb-1 targets during interrupt low-level processing. Update #2751.
10:20 Ticket #2819 (powerpc-ss555 does not compile on master) closed by Sebastian Huber <sebastian.huber@…>
fixed: In f730c25b707c7d6836d0a9bc2453dd0ca3cfa4e0/rtems: […]
09:37 Changeset in rtems [f730c25b]5 by Sebastian Huber <sebastian.huber@…>
powerpc/mpc5xx: Rename CPU_Interrupt_frame The MPC5XX support uses a legacy interrupt/exception infrastructure. Close #2819.
09:29 Ticket #2820 (All SPARC64 BSPs do not Build on master) closed by Sebastian Huber <sebastian.huber@…>
fixed: In ccc92b81c9fa4a969bdcc92cf19667be105740c3/rtems: […]
09:26 Changeset in rtems [ccc92b8]5 by Sebastian Huber <sebastian.huber@…>
score: Group Per_CPU_Control members by alignment Close #2820.
09:25 Changeset in rtems [27eccda]5 by Sebastian Huber <sebastian.huber@…>
sparc64: Fix _CPU_ISR_Is_enabled() Update #2820.
09:15 Ticket #2818 (NIOS2 Does Not Compile on Master) closed by Sebastian Huber <sebastian.huber@…>
fixed: In fd6d3f1f0361b2fe875b08a3c11f078fe933ff24/rtems: […]
09:15 Ticket #2816 (Many ARM BSPs have Static Assert) closed by Sebastian Huber <sebastian.huber@…>
fixed: In 9f225dea192e7b17ba465a6b78029532cdf97933/rtems: […]
09:13 Changeset in rtems [fd6d3f1]5 by Sebastian Huber <sebastian.huber@…>
nios2: Fix _CPU_ISR_Is_enabled() Close #2818.
09:11 Changeset in rtems [9f225dea]5 by Sebastian Huber <sebastian.huber@…>
arm: Fix ARM_CONTEXT_CONTROL_ISR_DISPATCH_DISABLE Close #2816.
09:07 Ticket #2817 (All Blackfin BSPs do not Compile on Master) closed by Sebastian Huber <sebastian.huber@…>
fixed: In c6f446bd702f6bdc469c7ed3a0e2b86cb9810032/rtems: […]
09:06 Changeset in rtems [c6f446b]5 by Sebastian Huber <sebastian.huber@…>
bfin: ASM compatibility for <rtems/score/cpu.h> Close #2817.

11/18/16:

20:41 Changeset in rtems-release [9c2b60e]5 by Chris Johns <chrisj@…>
Lets the tagging also push the tags.
19:54 Ticket #2820 (All SPARC64 BSPs do not Build on master) created by Joel Sherrill
Recent changes broke all builds: sparc64-rtems4.12-gcc --pipe …
19:53 Ticket #2819 (powerpc-ss555 does not compile on master) created by Joel Sherrill
Recent changes broke this configuration: gmake[6]: Entering directory …
19:52 Ticket #2818 (NIOS2 Does Not Compile on Master) created by Joel Sherrill
../../../../../../../../rtems/c/src/../../cpukit/score/cpu/nios2/nios2- …
19:51 Ticket #2817 (All Blackfin BSPs do not Compile on Master) created by Joel Sherrill
Recent changes to master resulted in this: bfin-rtems4.12-gcc --pipe …
17:39 Ticket #2816 (Many ARM BSPs have Static Assert) created by Joel Sherrill
Hi With the recent commits, many BSPs on the master do not build. …
13:59 Changeset in rtems-libbsd [bce3e5e]55-freebsd-126-freebsd-12 by Christian Mauderer <Christian.Mauderer@…>
lib80211/regdomain: Import from FreeBSD.
10:13 Changeset in rtems-libbsd [edf32f2]55-freebsd-126-freebsd-12 by Christian Mauderer <Christian.Mauderer@…>
rtwn: Port to RTEMS
10:11 Changeset in rtems-libbsd [20fa599]55-freebsd-126-freebsd-12 by Christian Mauderer <Christian.Mauderer@…>
firmware-gen.py: Add script to generate firmware c files.
00:22 Ticket #2815 (Add Preferred waf to top of various repositories) created by Joel Sherrill
The proper version of waf needs to be placed at the top of each repo. …

11/17/16:

22:10 Changeset in rtems [3a30c6f]5 by Chris Johns <chrisj@…>
Fix untar mkdir when the directory exists.
21:17 Ticket #2813 (4.11.0 has incorrect version information) closed by Chris Johns
fixed
13:56 Changeset in rtems [bb5d97f3]5 by Christian Mauderer <Christian.Mauderer@…>
bsp/atsamv: Make size of nocache-memory configurable.
08:15 Changeset in rtems-libbsd [e9a8b5a]55-freebsd-126-freebsd-12 by Christian Mauderer <Christian.Mauderer@…>
wlan ratectl and sta: Call init.
07:32 Developer/Release edited by Chris Johns
Update the procedure. (diff)
07:26 Changeset in rtems-release [387d91d]54.11.1 by Chris Johns <chrisj@…>
Generate the correct version for the RTEMS kernel. Remove autom4te.cache from the tar file.
06:40 Changeset in rtems [142628e]5 by Sebastian Huber <sebastian.huber@…>
score: Optimize self-contained objects Avoid use of the stack for the hot paths.
06:20 Changeset in rtems [1b87f27]5 by Sebastian Huber <sebastian.huber@…>
score: Constify _MRSP_Get_owner()

11/16/16:

23:49 Ticket #2814 (Remove Makefile.maint) created by Joel Sherrill
This file is obsolete and should be removed after 4.11.1 and on the master.
23:20 Ticket #2813 (4.11.0 has incorrect version information) created by Joel Sherrill
The version info in the tarball is wrong. We need to review …
15:39 Changeset in rtems [125f248]5 by Sebastian Huber <sebastian.huber@…>
score: Add thread queue enqueue callout Replace the expected thread dispatch disable level with a thread queue enqueue callout. This enables the use of _Thread_Dispatch_direct() in the thread queue enqueue procedure. This avoids impossible exection paths, e.g. Per_CPU_Control::dispatch_necessary is always true.
15:29 Changeset in rtems-libbsd [5c3223f]55-freebsd-126-freebsd-12 by Christian Mauderer <Christian.Mauderer@…>
ifconfig/wlan, expat, lib80211: Port to RTEMS.
14:57 Release/4.11 edited by Pavel Pisa
RTEMS 4.11, clarify complete TMS570LS3137 support (diff)
14:02 Changeset in rtems-libbsd [2389539]55-freebsd-126-freebsd-12 by Christian Mauderer <Christian.Mauderer@…>
ifconfig/wlan, expat, lib80211: Import from FreeBSD.
13:50 Changeset in rtems [c42be504]5 by Sebastian Huber <sebastian.huber@…>
posix: Add self-contained pthread spinlock Turn pthread_spinlock_t into a self-contained object. On uni-processor configurations, interrupts are disabled in the lock/trylock operations and the previous interrupt status is restored in the corresponding unlock operations. On SMP configurations, a ticket lock is a acquired and released in addition. The self-contained pthread_spinlock_t object is defined by Newlib in <sys/_pthreadtypes.h>. typedef struct { struct _Ticket_lock_Control _lock; uint32_t _interrupt_state; } pthread_spinlock_t; This implementation is simple and efficient. However, this test case of the Linux Test Project would fail due to call of printf() and sleep() during spin lock ownership: https://github.com/linux-test-project/ltp/blob/master/testcases/open_posix_testsuite/conformance/interfaces/pthread_spin_lock/1-2.c There is only limited support for profiling on SMP configurations. Delete CORE spinlock implementation. Update #2674.
12:20 Changeset in rtems-libbsd [2e8dd24]55-freebsd-126-freebsd-12 by Christian Mauderer <Christian.Mauderer@…>
firmware: Import from FreeBSD.
00:35 Changeset in rtems-release [0ded790]5 by Chris Johns <chrisj@…>
Update to the tag puch command.
00:20 Developer/Release edited by Chris Johns
(diff)

11/15/16:

23:54 Changeset in rtems-docs [d8beaab]5 by Joel Sherrill <joel@…>
Remove references to SPARC/SIS BSP. Also clean up old ERC32 references. updates #2810.
22:46 Changeset in rtems-release [117d199]54.11.0 by Chris Johns <chrisj@…>
Add a rtems-release-tag script to support tagging repositories.
22:18 Developer/Release edited by Chris Johns
Add rtems-release.git tagging and branch details. (diff)
21:50 Developer/Release edited by Chris Johns
(diff)
21:48 Developer/Release edited by Chris Johns
(diff)
21:29 Developer/Release edited by Chris Johns
(diff)
21:27 Developer/Release edited by Chris Johns
Add tagging. (diff)
18:19 Changeset in rtems [de7b174e]5 by Joel Sherrill <joel@…>
Remove sparc/sis BSP. closes #2810.
16:38 Ticket #2812 (Remove Texinfo Documentation) created by Joel Sherrill
With the converted documentation now suitable for public distribution …
16:37 Changeset in rtems [48a7fa3]5 by Joel Sherrill <joel@…>
Remove texinfo format documentation. Replaced by Sphinx formatted documentation. closes #2812.
16:17 Release/4.11 edited by Gedare Bloom
actually fix the links. (diff)
16:16 Release/4.11 edited by Gedare Bloom
fix some links (diff)
16:14 Release/4.11 edited by Gedare Bloom
Remove some TBDs (diff)
16:13 Release/4.11 edited by Gedare Bloom
fix link to arm-eabi (diff)
16:12 Release/4.11 edited by Gedare Bloom
bump binutils and gcc (diff)
06:45 Ticket #2811 (More robust thread dispatching on SMP and ARM Cortex-M) created by Sebastian Huber
On SMP configurations, it is a fatal error to call blocking operating …
00:02 Changeset in rtems-source-builder [1c68dbb]5 by Joel Sherrill <joel@…>
gdb-7.12-1: Fetch patch from rtems-tools
00:02 Changeset in rtems-source-builder [1d61c3a]5 by Joel Sherrill <joel@…>
gdb-7.11-1: Fetch patch from rtems-tools
00:00 Changeset in rtems-tools [e2af743]5 by Joel Sherrill <joel@…>
Add 4.12/.../gdb-7.11-sis-leon2-leon3.diff from gaisler.org

11/14/16:

23:57 Changeset in rtems-source-builder [9c50131]5 by Joel Sherrill <joel@…>
binutils-2.27-1: Fetch patch from rtems-tools
23:57 Changeset in rtems-source-builder [a51bfa1]5 by Joel Sherrill <joel@…>
binutils-2.26-1: Fetch patch from rtems-tools
22:04 Changeset in rtems-tools [b5caf21]5 by Joel Sherrill <joel@…>
Add 4.12/.../binutils-2.26-gas-reloc.patch from gaisler.org
21:12 Changeset in rtems-docs [58c815c]4.114.11.04.11.1 by Chris Johns <chrisj@…>
waf: Add networking to the manual built.
21:12 Changeset in rtems-docs [6345b2d]5 by Chris Johns <chrisj@…>
waf: Add networking to the manual built.
16:47 Ticket #2810 (Remove sparc/sis BSP variant) created by Joel Sherrill
As discussed in the following thread, the sparc/sis BSP variant is no …
16:34 Ticket #2287 (RTEMS printf warnings - newlib's inttypes.h and gcc's newlib-stdint.h) closed by Joel Sherrill
fixed: This has been resolved a long time.
16:34 Ticket #2644 (sis does not run on gdb 7.11 but does on gdb 7.9) closed by Joel Sherrill
fixed
14:23 Changeset in rtems [7ce60b3]5 by Sebastian Huber <sebastian.huber@…>
powerpc: Use Per_CPU_Control::isr_dispatch_disable Update #2751.
14:21 Changeset in rtems [316da93]5 by Jiri Gaisler <jiri@…>
rtl-mdreloc-sparc.c: Do not print unaligned pointer and cause unaligned access. updates #2802.
14:15 Changeset in rtems-source-builder [c10a803]5 by Joel Sherrill <joel@…>
gdb-7.12-1: Add support for leon2/leon3 to sis
14:15 Changeset in rtems-source-builder [16fd45d]5 by Joel Sherrill <joel@…>
gdb-7.11-1: Add support for leon2/leon3 to sis
13:42 Changeset in rtems [c11ac2d5]5 by Sebastian Huber <sebastian.huber@…>
sparc: Use Per_CPU_Control::isr_dispatch_disable Update #2751.
12:46 Changeset in rtems-libbsd [a241ea8]55-freebsd-126-freebsd-12 by Christian Mauderer <Christian.Mauderer@…>
Import IEEE 802.11 from FreeBSD.
12:30 Changeset in rtems-libbsd [d145449]55-freebsd-126-freebsd-12 by Christian Mauderer <Christian.Mauderer@…>
Import USB and USB WLAN from FreeBSD.
11:16 Ticket #2809 (Reduce interrupt latency on SMP configurations during thread dispatch) created by Sebastian Huber
Currently we have this situation: …
11:06 Changeset in rtems [2599c8e]5 by Sebastian Huber <sebastian.huber@…>
powerpc: Add up to date CPU_Interrupt_frame Rename ppc_exc_min_frame to CPU_Interrupt_frame. Move it and the corresponding defines to <rtems/score/cpuimpl.h>. Update #2809.
10:34 Changeset in rtems [c539a865]5 by Sebastian Huber <sebastian.huber@…>
sparc: Move CPU_Interrupt_frame related defines Move CPU_Interrupt_frame related defines to <rtems/score/cpuimpl.h>. Update #2809.
09:17 Changeset in rtems-libbsd [7614758]55-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
Revert "rtems-kernel-page: Panic on recursive reclaim" This attempt to fix a memory allocation problem turned out to be broken. This reverts commit 651710509430eee6731807801bd5ad85d28f4db4.
09:17 Changeset in rtems-libbsd [5ede682]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
ZONE(9): Use recursive lock for the UMA drain
08:53 Changeset in rtems [d59585d]5 by Sebastian Huber <sebastian.huber@…>
arm: Use Per_CPU_Control::isr_dispatch_disable Update #2751.
08:11 Changeset in rtems [d78d529]5 by Sebastian Huber <sebastian.huber@…>
score: Add and use _Thread_Dispatch_direct() This function is useful for operations which synchronously block, e.g. self restart, self deletion, yield, sleep. It helps to detect if these operations are called in the wrong context. Since the thread dispatch necessary indicator is not used, this is more robust in some SMP situations. Update #2751.
01:34 Changeset in rtems-source-builder [00fe8f7]5 by Jiri Gaisler <jiri@…>
binutils-2.27-1: Add patch for unaligned reloc on SPARC updates #2802.
01:32 Changeset in rtems-source-builder [623c8e7]5 by Jiri Gaisler <jiri@…>
binutils-2.26-1: Add patch for unaligned reloc on SPARC closes #2802.
Note: See TracTimeline for information about the timeline view.